Ola,

I want a textbox to be checked for specific characters. I can use:
Code:
with textbox1.text
    If .contains("a") or .contains("b") or .contains("c")...etc... then...
How can I shorten this?