InputBox
Previous  

This provides an input box control which is a way to easily obtain user input.

Methods

New1 : Creates a new InputBox object.

Show(Prompt AS String, Title AS String, DefaultResponse AS String, Xpos AS Int, Ypos AS Int) : Shows an input box at positions Xpos and Ypos on the screen. If either Xpos or Ypos are less than 0 then the Input box is positioned approximately half way along that axis. Prompt can be made  multi-line by including CrLfs in the prompt string. If the user presses cancel an empty string is returned otherwise the return is the string shown in the InputBox.