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