This function shows the password input dialog and returns True if user clicked Ok button.
object.InputPassword(aValue, aPrompt)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
aValue |
In/Out, Required | object& |
The password value |
aPrompt |
In, Required | string |
The dialog prompt |
bool
Show the password input dialog and display the result and the entered password value.
Dim aValue
Dim aResult
aValue = "111"
aResult = Profile.InputPassword(aValue, "Enter your password")
Profile.MsgBox(aResult & " --- " & aValue)