Class wwuseradmindialog |
Parent Class: form
Displays an admin form for managing users. The form is optimized for rendering into DHTML with Web Connection and can be handled directly as a Web Connection request using the wwProcessAdminUser() method.
Name | Type | Description |
deleteuser | ![]() | Deletes the currently selected user o.deleteuser() |
newuser | ![]() | Adds a new user to the file. Record is not added until SaveUser is called. o.newuser() |
reindex | ![]() | Reindexes the user file. o.reindex() |
saveuser | ![]() | Saves the currently displayed user. o.saveuser(LPARAMETER lcpk) |
showuser | ![]() | Displays the current user on the form. o.showuser(LPARAMETER lcpk) |
showuserbyusername | ![]() | Shows a user by username. Use for Web links o.showuserbyusername(LPARAMETER lcusername) |
statusmessage | ![]() | Displays any status information. o.statusmessage(LPARAMETER lcmessage, lnseverity) |
wwProcessAdminUser | ![]() | Runs a self-contained Web Connection request that handles the rendering of the admin dialog as a DHTML form. o.wwProcessAdminUser(loProcess,lcExitUrl) |
Example: | PUBLIC oAdmin oAdmin = CREATE('wwUserAdminDialog',; '.\tools\usersecurity,; 'usersecurity') oAdmin.Show() |