Microsoft’s Access Snapshot Viewer is a useful tool for viewing and printing Snapshot files (*.snp). While we can use its graphical interface, it would be good if the program could also be operated using command-line switches, such as ‘/openfile’ or ‘/print’.
Decompile in the Compare and Compact menu
Access should automatically build and decompile when the user selects the Compact and Repair menu.
Access needs a GetFileDialog and GetFolderDialog
Access needs to have a built in File and Folder dialog so that it doesn’t need to be calling the Office API as it requires a lot of work. It should be as simple as one would use it in Visual Studio.
Dim MyOpenFileDialog As System.Windows.Forms.OpenFileDialog MyOpenFileDialog.InitialDirectory = "C:\" MyOpenFileDialog.OpenFile()
Combo box with lookup button
One of the problems that Access developers have when they design in a bound environment is that they put combo boxes on forms which show a big list. This is not only hard to navigate once you start showing hundreds of records, it also causes the form to take longer to load, especially when you upsize to SQL Server.
A better option is to include next to the combo box an ellipsis button “…” which pops up a lookup form.
Easy way to convert Reports to Reporting Services reports
Access should have a button to deploy a report to reporting services, that turns it into an RDL file, deploys and opens it in a browser. We know that the conversion progress may be complicated and that every piece of functionality will not be available, so if you want this function you should be able to set a property on the form that says “Reporting Services Compatible” (i.e. disables some of the features in access to increase compatibility)
Convert to Windows .NET Application
On the Forms you want to have an option that allows you to convert to a One-Click Windows .NET Form (which turns the Access form into a .NET Windows Form) and have people use that through the browser. This allows a Skilled access developer to deploy a basic data entry form to the browser and have the enterprise entering data. We know that the conversion progress may be complicated and that every piece of functionality will not be available, so if you want this function you should be able to set a property on the form that says “.NET Compatible” (i.e. disables some of the features in access to increase compatibility)
Forms should have a Trace property
The form designer should have a property to turn tracing on, similar to ASP.NET 2 (see figure below). Tracing will log all the methods that are called as well as the time taken by each method. This is particularly useful identifying the causes of slow loading forms.
Access should disconnect gracefully from SQL Server
If your Access front-end is linked to a SQL backend, you will encounter a large number of errors and unsightly message boxes if the SQL Server connection is closed for whatever reason. Access should be able to recover gracefully from this common problem, rather than bombard the user with dialogs. Read more information about this issue.
Access needs a Search View
At the moment there are the Form and Continuous views. Access needs another view that doesn’t have the navigation buttons at the bottom but instead should have a search form that is bound to table. This allows for easier and more intuitive navigation of large data sources.
We know there is existing functionality to search fields, but the interface is not intuitive and robust enough.
Access applications should be easily deployed
You should be able to put the runtime in the folder of the MDE and xcopy it to another machine and it should work.