{ textBox1.Text = "Apple"; } private void textBox1_TextChanged(object
sender, EventArgs e) { if
(textBox1.Text.Length == 1) { if
(textBox1.Text == "B" ||
textBox1.Text == "b") { textBox1.Text = "Ball"; } } } |
Suppose I have One column on datagridview like below:
{ DataGridViewColumn
Particulars = new DataGridViewTextBoxColumn(); dataGridView1.Columns.Insert(0,
Particulars ); } |
If I have above column In datagridview1 than How
to do I with datagridview1 which I have did with textbox?.
CrishPosted Nov 30, 2010, 4:33 AM
This code is very helpful and easy code to solve the issue of TextBox Example Into Datagridview.