|
|
|
|
|
gpwModifyUser (Function) In french: gpwModifieUtilisateur Modifies a user in the User Groupware database.
clUser is gpwUser
clUser.Email = EDT_Email
clUser.Login = EDT_Login
clUser.Password = EDT_Password
clUser.LastName = EDT_LastName
clUser.FirstName = EDT_FirstName
clUser.PhoneNumber = EDT_Phone
IF gpwModifyUser(clUser) = False
Info("Unable to modify the user." + CR + HErrorInfo())
RETURN
END
Syntax
<Result> = gpwModifyUser(<User>)
<Result>: Boolean - True if the user is modified,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<User>: gpwUser variable Name of the gpwUser variable containing the information to modify.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|