ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / User Groupware functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Modifies a user in the database of user groupware.
Example
// Values of new user
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
 
// Modify the user
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.
Component: wd290gpu.dll
Minimum version required
  • Version 19
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help