A password-field is a user interface control that allows the editing of a single line of text where the view indicates something was typed, but does not show the original characters.
Contents |
Purpose
...
Samples
The following example will output the password in a MessageBox.
Public Sub cmdLogin_Click() MsgBox Password1.Text End Sub
Differences to VB6
VB6 developers set the "TextBox.PasswordChar"-Property to use the TextBox as a InputField for a password. In Jabaco you have a separate control for this task.

