
Input Boxes
Message boxes provide a great deal of functionality and allow
you to get feedback from the end user. Sometimes, though,
you will want to obtain more from a user than just the
numeric value of the button selected. In this case, you will
probably want to work with an input box. Input boxes display
a prompt in a dialog box, wait for the user to input text or
click a button, and return a string containing the contents of
the text box. The syntax is:
InputBox(prompt[, title][,default][,xpos][,ypos][,helpfile, context])
The InputBox function has these named arguments:
prompt This parameter is required. This text will be displayed as the message in ...