ISProfile.InputPassword

Description

This function shows the password input dialog and returns True if user clicked Ok button.

Syntax

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

Return Value

bool

Example

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)
Note:

Version information

Added in v7.8.0