Hi
how can I validate a value entered in a text box is date,numeric etc.
Thnx
Nebu
Printable View
Hi
how can I validate a value entered in a text box is date,numeric etc.
Thnx
Nebu
IsDate()
IsNumeric()
VB Code:
Private Sub Command1_Click() If IsNumeric(Text1.Text) Then MsgBox "number" If IsDate(Text1.Text) Then MsgBox "date" End Sub
heeh morning frog :)
Gud Morgen.