Removeing Certain Characters From a Textbox
I'm trying to limit what the user can enter into a textbox. The easy part is knowing if they tried to type that character, the hard part is removing that single character. Does anyone know how? e.SuppressKeyPress is really buggy and not working right.
I've tried Textbox1.text.replace("|", "") and Textbox1.text.remove(Textbox1.textlength - 1), no luck there.