use this code: by this code,your problem is ok
private void textBox1_TextChanged(object sender, EventArgs e)
{
try
{
string ss = textBox1.Text.Replace(",", "");
int d = int.Parse(ss);
string gg = String.Format("{0:###,###,###}", d);
textBox1.Text = gg;
textBox1.SelectionStart = textBox1.Text.Length;
}
catch
{
}
}
try { string ss = textBox1.Text.Replace(",", ""); int d = int.Parse(ss); string gg = String.Format("{0:###,###,###}", d); textBox1.Text = gg; textBox1.SelectionStart = textBox1.Text.Length; } catch { }