PDA

Click to See Complete Forum and Search --> : Multiple User Database??


omarswan
Nov 10th, 1999, 03:30 PM
Can someone please tell me where I can get help on creating and using a Multi-User Database in VB.

Thanks

smalig
Nov 10th, 1999, 08:08 PM
Hallo, Omar!
Ich bin Alexei :)

If you use ms access you can use workgroup information file System.mdw to access the security information about users and groups.

For sample:

JetName="MyTest"
UserName="Guest"
Password="Test"
DBEngine.SystemDB = "d:\system.mdw"
Set wrkJet = DBEngine.CreateWorkspace(JetName, UserName, Password, Type)
Set db1 = DBEngine.Workspaces(JetName).OpenDatabase(dbName, , False)

------------------
smalig
smalig@hotmail.com
smalig.tripod.com (http://smalig.tripod.com)

smalig
Nov 10th, 1999, 08:12 PM
Also you can use database password.
Look how to open database with password at http://smalig.tripod.com/vb/079913.html


------------------
smalig
smalig@hotmail.com
smalig.tripod.com (http://smalig.tripod.com)