InputBox Function

   
InputBox Function

Class

Microsoft.VisualBasic.Interaction

Syntax

 InputBox(   prompt   [,   title   ] [,   defaultresponse   ] [,   xpos   ] _         [,   ypos   ]) 
prompt (required; String)

The message in the dialog box

title (optional; String)

The title bar of the dialog box

defaultresponse (optional; String)

String to be displayed in the text box on loading

xpos (optional; Numeric)

The distance in twips from the left-hand side of the screen to the left-hand side of the dialog box

ypos (optional; Numeric)

The distance in twips from the top of the screen to the top of the dialog box

Return Value

A String containing the contents of the text box from the InputBox dialog box

Description

Displays a dialog box containing a prompt for the user , a text box for entering data, and an OK, a Cancel, and ( optionally ) a Help button. When the user clicks OK, the function returns the contents of the text box.

Rules at a Glance

  • If the user clicks Cancel, a zero-length string ("") is returned. Thus, once again, Microsoft has apparently made it impossible for us to distinguish when the user enters the empty string and when the user hits the Cancel button.

  • prompt can contain approximately 1,000 characters, including nonprinting characters like the intrinsic vbCrLf constant.

  • If the title argument is omitted, the name of the current application or project is displayed in the title bar.

  • If you don't use the default parameter to specify a default entry for the text box, the text box is shown as empty, and a zero-length string is returned when the user does not enter anything in the text box prior to clicking OK.

  • xpos and ypos are specified in twips.

  • If the xpos parameter is omitted, the dialog box is centered horizontally.

  • If the ypos parameter is omitted, the top of the dialog box is positioned approximately one-third of the way down the screen.

Programming Tips and Gotchas

  • If you are omitting one or more of the optional arguments and are using subsequent arguments, you must use a comma to signify the missing parameter. For example, the following code fragment will display a prompt, a default string in the text box, and the Help button, but default values will be used for the title and positioning.

     Dim sString As String = InputBox("Enter it now", , _                                  "Something") 
  • Note that InputBox returns a string. Your code is responsible for converting it to the required data type before using it.

See Also

MsgBox Function

   


VB.Net Language in a Nutshell
VB.NET Language in a Nutshell
ISBN: B00006L54Q
EAN: N/A
Year: 2002
Pages: 503

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net