Delete user information in System.mdw file? (1 Viewer)

J

joblot

Guest
Is it possible to delete user information in workgroup information (System.mdw) file from command line or programmatically?

Thanks
 

Laurentech

Registered User.
Local time
Today, 02:15
Joined
Nov 7, 2005
Messages
107
To delete a user from the workgroup file programatically:

Code:
Dim wks As Workspace
Set wks = DBEngine(0)

'DELETE USER FROM WORKGROUP

        wks.Users.Delete UserID

UserID is a string variable containing the username you want to delete.

Larry
 

Users who are viewing this thread

Top Bottom