J joblot Guest Jun 16, 2006 #1 Is it possible to delete user information in workgroup information (System.mdw) file from command line or programmatically? Thanks
Is it possible to delete user information in workgroup information (System.mdw) file from command line or programmatically? Thanks
L Laurentech Registered User. Local time Today, 13:29 Joined Nov 7, 2005 Messages 107 Jun 16, 2006 #2 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
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