Hi all
Does anybody know the symbol for space when doing a like or am I missing something
this does not work
I also have this below looking for a match with ' character (eg brian's)
it works good, so need the character code for a space
Does anybody know the symbol for space when doing a like or am I missing something
this does not work
Code:
If Me.TextBox5.Text Like "*At At*" Then
Me.TextBox5.ForeColor = vbRed
Else
Me.TextBox5.ForeColor = vbBlack
End If
I also have this below looking for a match with ' character (eg brian's)
it works good, so need the character code for a space
Code:
If Me.TextBox5.Text Like "*ƒ??*" Then
Me.TextBox5.ForeColor = vbRed
Else
Me.TextBox5.ForeColor = vbBlack
End If