private void Form1_Load(object sender, EventArgs e)
{
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";
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?.