Apologies for posting a question on my first post, anyhow, could someone suggest an idea to turn this into working VB6 code:
ValidChars = "0123456789 ABC"
If (TextBox1.Text only contains characters from ValidChars) then
' Do whatever '
Else
' Do something else '
EndIf
ValidChars = "0123456789 ABC"
If (TextBox1.Text only contains characters from ValidChars) then
' Do whatever '
Else
' Do something else '
EndIf
Comment