help! how do u recognize a space on the textbox?
how do u recognize space on textbox
Collapse
X
-
Originally posted by QVeen72Hi,
Check This :
[code=vb]
If Text1.Text <> "" And Trim(Text1.Text ) = "" Then
MsgBox "All Blank Spaces"
End If
OR
If InStr(Text1.Tex t ," ") > 0 And Trim(Text1.Text ) = "" Then
MsgBox "All Blank Spaces"
End If
[/code]
REgards
Veena
Thanks iT helped a lot......
regArds! OBKFixxComment
Comment