MsgBoxGetInput

Description

Displays a message box with an input field

Syntax

ret = MsgBoxGetInput (MessageString)

Parameters

ret

String, output

 

The string that is entered into the dialog box by the user.

 

 

MessageString

String, input

 

The string that is displayed as the message in the dialog box.

Remarks

This is a PASSPORT function.

Example

Sub ZMain()
strName=MsgBoxGetInput("Please enter your first name:")
MsgBox "Hello, "&strName
End Sub