T
tbergman
Guest
A large number of properties are available on the UserPrincipal object. Here's a bit of code that should point you in the right direction. DEFINE VARIABLE objUser AS UserPrincipal. objUser = UserPrincipal:FindByIdentity(objContext,pLoginName). IF ObjUser = ? THEN .... IF NOT objUser:ENABLED THEN ..... IF objUser:IsAccountLockedOut() THEN ....
Continue reading...
Continue reading...