ISProfile.InputValue

Description

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

Syntax

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

Return Value

bool

Example

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

Version information

Added in v7.8.0