Hi!
I want when user type comma in textbox to
automaticly replace in dot.
In keypress event i have something like this:
if (e.KeyChar == 44)
{
textBox1.Text = textBox1.Text.R eplace(",",".") ;
}
but it doesn't work in way that i want. Is there any
way to do that?
Thnx.
I want when user type comma in textbox to
automaticly replace in dot.
In keypress event i have something like this:
if (e.KeyChar == 44)
{
textBox1.Text = textBox1.Text.R eplace(",",".") ;
}
but it doesn't work in way that i want. Is there any
way to do that?
Thnx.
Comment