I know this can be done, and I am sure if I spent long enough I could do this. Is there a really concise way of formatting textboxtext? I know you can you RegExp, but it seems there might be a simpler way?
__________________
God save us from the religious fanatics
I personally use a combination of instr and the replace function to keep things simple.
So if you need to check for a email then instr(mytext,"@") would return 0 if it wasnt found. You could obviously take this further to check for various other characters.
I'm not too sure if this will solve your problem or not.