|
-
Mar 16th, 2000, 12:32 PM
#1
Thread Starter
New Member
I want to make a program that checks how much characters are in a text box. If there are less than 3 then it would give an error. Any ideas on how I can do that?
-
Mar 16th, 2000, 01:34 PM
#2
Lively Member
If Len(Text1.Text) < 3 Then: MsgBox ("error")
-
Mar 16th, 2000, 01:36 PM
#3
Frenzied Member
Sure...
Try this...
Code:
If Len(Text1.Text) < 3 Then
MsgBox "ERROR" 'Your error raise code goes here
End If
-
Mar 16th, 2000, 01:38 PM
#4
Frenzied Member
rats
_bman_, I can't believe that this post has been sitting here for an hour and you beat me w/the answer by 2 minutes!
-
Mar 16th, 2000, 01:46 PM
#5
Thread Starter
New Member
thanks you guys
I appreciate it when people help me out since I've only done programming for so little.
-
Mar 16th, 2000, 02:03 PM
#6
Lively Member
I planned it that way
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
|