VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "InputBox Demonstration"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   2  'CenterScreen
   Begin VB.CommandButton Command1 
      Caption         =   "Click Me!"
      Height          =   375
      Left            =   1440
      TabIndex        =   0
      Top             =   1440
      Width           =   1455
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
    Dim x
    x = InputBox("This is a normal InputBox")
   
    frmInputBox.Prompt = "This is frmInputBox"
    frmInputBox.Title = "Input Box"
    frmInputBox.Default = "See frmInputBox Declarations section for how to use me"
    
    frmInputBox.Display
    
End Sub


Private Sub Form_Load()

End Sub


