Passwords.DeleteUser



DeleteUser(szIdentification As String) As Boolean

Parameters

szIdentification As String
Identification of a user as string.
ED
avaliable
RT
avaliable

Remarks

This method deletes the user with the identification szIdentification from the central user administration.
This change is immediately saved, i.e. after deleting a user he is no longer available for the system.
If no user with this identification can be found, the method returns False.

Sample:


'delete a user
Sub DeleteUSer()
Dim bResult As Boolean
	bResult = thisProject.Passwords.DeleteUSer("LogonName")
End Sub

See Also

Passwords