IsNumberic Function
If you ever need to check and see if a text box contains a number you can use the following code.
=========================================
If IsNumeric(Text1.Text) = True Then
MsgBox("That's a number!")
Else
MsgBox("That is NOT a number!")
End If