|
-
Jan 15th, 2004, 01:25 AM
#1
Thread Starter
Lively Member
Validation of values
Hi
how can I validate a value entered in a text box is date,numeric etc.
Thnx
Nebu
-
Jan 15th, 2004, 01:32 AM
#2
-
Jan 15th, 2004, 01:34 AM
#3
-= B u g S l a y e r =-
VB Code:
Private Sub Command1_Click()
If IsNumeric(Text1.Text) Then MsgBox "number"
If IsDate(Text1.Text) Then MsgBox "date"
End Sub
-
Jan 15th, 2004, 01:35 AM
#4
-= B u g S l a y e r =-
heeh morning frog
-
Jan 15th, 2004, 01:54 AM
#5
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|