Here's a bit of code that should get you started. I use this method to print labels in specific formats. Hope this helps.
mapman04
Dim strMsg,inp01,strTitle,strFlag
strTitle = "Answer Box"
strMsg = "Enter A for Alaska" & vbCR
strMsg = strMsg & "Enter D for Delaware" & vbCR
strMsg = strMsg & "Enter T for Texas" & vbCR
strFlag = False
Do While strFlag = False
inp01 = InputBox(strMsg,"Make your selection")
Select Case inp01
Case "A"
MsgBox "You picked Alaska!",64,strTitle
strFlag = True
Case "D"
MsgBox "You picked Delaware!",64,strTitle
strFlag = True
Case "T"
MsgBox "You picked Texas!",64,strTitle
strFlag = True
Case Else
MsgBox "You made an incorrect selection!",64,strTitle
End Select
Loop
Wscript.Quit