ChangePassword (method)

Syntax ChangePassword Project$ , OldPassword$, NewPassword$
Description To change a password for a currently logged in user on a specified project.
Comments Parameter Description
Project$ String. The project to change the password on. An empty string indicates the current default project.
OldPassword$ String. The old password of the user.
NewPassword$ String. The new password of the user.
Example
sub main()
   ChangePassword "CIMPDEMO", "OLDPASS", "NEWPASS"
end sub
Note The user must be logged into the specified project or the function will fail.