Oct 1, 2002 #1 Pyramus Programmer Joined Dec 19, 2001 Messages 237 Location GB How do I check whether text entered in a text box has spaces in it? TIA.
Oct 1, 2002 #2 handbrake Programmer Joined Oct 1, 2002 Messages 11 Location GB If instr(1, txtMyTextBox.Text, " " <> 0 Then 'I have some spaces End If Cheers, Grant. Upvote 0 Downvote
Oct 1, 2002 Thread starter #3 Pyramus Programmer Joined Dec 19, 2001 Messages 237 Location GB thanks Upvote 0 Downvote