views:

59

answers:

2

Hi,

Does anyone have experience of rapidly translating an access application into a standalone windows application? My current thoughts are to create an SQL database and a gui in c# and vb, or adobe flex 3.

As with acces, the GUI would mainly comprise of controls such as radio buttons, combo box (populated from a table), check boxes, text boxes, text areas and data grids. It will also need the ability to create reports as access does.

Any advice based would be appreciated.

Happy new year.

+4  A: 
  • Use the upsize wizard (tools menu) to port the data to SQL Server
  • Carry on using Access as a front end
  • Change the schema as needed, hide change behind views for Access
  • Write a new GUI in asp.net or WinForms
gbn
Although I wouldn't bother with the writing of a new GUI in another app. After all you can't consider C#, VB.Net or Adobe Flex to be stand alone systems.
Tony Toews
+1  A: 

sqlite may be the choice of database. It is simple, a self-contained, embeddable, zero-configuration SQL database engine. you don't need any database server as sqlite is file-based.

I guess vb.net 2008 can be used as it is very easy to generate GUI.

Tommy
And the application part? That's by far the more complicated issue here. Your doesn't doesn't address the most important part of the question at all.
David-W-Fenton