Language Basics VisualBasic Script

Sub res()
    Dim strWhichOffice
    
    strWhichOffice = InputBox("Enter the name of the office:", _
        "Expense Assistant 2000", "default", , , _
        "c:\Help.chm", 0)
    If strWhichOffice = "" Then End
End Sub