PDA

Click to See Complete Forum and Search --> : networking a database program?


paul
Jun 27th, 1999, 05:30 PM
I am wanting to write a ordering program that needs to be used on several computers at once.I am wanting to know is there any thing I should do to let the database be shared. Any help would be appreciated.
Thanks Paul

------------------

bashfirst
Jun 27th, 1999, 08:08 PM
If the database you are using is Access, the default is shared access. You specify this in the OpenDatabase method:
Set db = OpenDatabase("C:\MyDb.mdb",False)

The False (which is optional) opens the database in shared mode.

Bash