InputBox Function
Displays a prompt in a dialog box, waits for the user to input text or click a button, and returns the contents of the text box.
InputBox(prompt[, title][, default][, xpos][, ypos][, helpfile, context])
When both helpfile and context are supplied, a Help button is automatically added to the dialog box.
If the user clicks OK or presses ENTER, the InputBox function returns whatever is in the text box. If the user clicks Cancel, the function returns a zero-length string ("").
The following example uses the InputBox function to display an input box and assign the string to the variable Input:
Dim Input
Input = InputBox("Enter your name")
MsgBox ("You entered: " & Input)
Password Field
I wish there was a way to star out the input if using the function vArg as a password validation so you couldnt see what password the end GUI user is typing at runtime
- 10/18/2011
- JAaronAndersondotcom
Input Icons desired
I wish I could place a icon on an input field reinforcing user data entry its requirement like I can add an icon on a MsgBox :S
thx
JAaronAnderson.com
@jaaronanderson
thx
JAaronAnderson.com
@jaaronanderson
- 10/18/2011
- JAaronAndersondotcom