Delete user information in System.mdw file?

  • Thread starter Thread starter joblot
  • Start date Start date
J

joblot

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

Thanks
 
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

Back
Top Bottom