MsgBoxGetPassword

Description

Displays a message box with a password non-display input field

Syntax

ret = MsgBoxGetPassword (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

As the user enters the text, the asterisks character is displayed instead of the actual character that is typed.

This is a PASSPORT function.

Example

Sub ZMain()
strPassword=MsgBoxGetPassword("Please enter your password:")
MsgBox "Your password is: "&strPassword
End Sub