07-09-2019, 01:45 AM
this is my code:
on mouseUp pButtonNumber
local tProjectName, tEmail, tPassword, tSecureMode
put "projector lab project" into tProjectName
put "mark@email.com" into tEmail
put "*" into tPassword
put false into tSecureMode
cdb_deleteUserAccount tEmail,,tSecureMode,tProjectName
end mouseUp
if I don't include a password and set the tSecureMode to false, I get a message that the pPassword parameter is missing.
The passwords are secure so they may not available but putting "false" still will not delete the user.
on mouseUp pButtonNumber
local tProjectName, tEmail, tPassword, tSecureMode
put "projector lab project" into tProjectName
put "mark@email.com" into tEmail
put "*" into tPassword
put false into tSecureMode
cdb_deleteUserAccount tEmail,,tSecureMode,tProjectName
end mouseUp
if I don't include a password and set the tSecureMode to false, I get a message that the pPassword parameter is missing.
The passwords are secure so they may not available but putting "false" still will not delete the user.