This is what I want to do:

Code:
if (!Char.IsDigit(e.KeyChar.ToString(), 0) )
{
    STOPTHISCHARFROMBEINGENTERED();
}
but e.KeyChar can't be assigned to bc it's readonly.

Help?

Dan