Can someone please tell me where I can get help on creating and using a Multi-User Database in VB.
Thanks
Printable View
Can someone please tell me where I can get help on creating and using a Multi-User Database in VB.
Thanks
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
[email protected]
smalig.tripod.com
Also you can use database password.
Look how to open database with password at http://smalig.tripod.com/vb/079913.html
------------------
smalig
[email protected]
smalig.tripod.com