|
-
February 19th, 2003, 12:27 PM
#1
Setting Msaccess 2k Password Programatically
I wonder how to set MSACCESS password programatically.
I use Visual C++. Should I use a specific interface, should I use ADO, ADOX ????? I have no clue about.
Please, if it is possible to send me some source code or point me to a location where I can find the source code cause I do not know ADO , COM/DCOM and stuff.
10x in advance
-
March 7th, 2003, 09:28 AM
#2
Sorry Vb only ... never liked C
Dim cat As ADOX.Catalog
Dim usr As ADOX.User
Set cat = New ADOX.Catalog
cat.ActiveConnection = CurrentProject.Connection
Set usr = cat.Users(strUser)
Check out
http://support.microsoft.com/default...b;en-us;304319
for more
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|