Easiest way to tell if text is a number
Shows you how to check if text is a numeric *Easiest way*
Rate Easiest way to tell if text is a number
(14(14 Vote))
'You need a command button (Command1)
'Also a textbox (Text1)
Private Sub Command1_Click()
If IsNumeric(Text1.Text) Then
MsgBox "Thankyou for entering a number"
Else: MsgBox "Please enter a number"
End If
End Sub
Easiest way to tell if text is a number Comments
No comments yet — be the first to post one!
Post a Comment