View Full Version : Standalone application


fatti
03-10-2006, 03:28 AM
I need to build an application that has a database but has to be standalone so no installation of drivers is needed as it is designed for a group of people who are just about computer illiterate.

I need to program this in VB.Net and was told there was a version of Access that could do what I am after.

If there isnt....... any ideas?

MadMaxx
03-14-2006, 12:35 PM
With VB.NET you can use any type of database you want. As long as you point to it in your code. Then you can compile your project and copy the executable to the users machine and they can run it. you don't need to run an installer with vb.net apps unless you have some custom stuff.

webster
03-21-2006, 04:53 AM
MS Access 2000/2003 will work or like said, any dbms will work.
You need to use OleDb* routines to connect, and manage the database.

See http://www.startvbdotnet.com/ado/msaccess.aspx
for further help.