Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (textBox1.Text != "")
- {
- for (int i = 0; i < dataGridView1.ColumnCount; i++)
- {
- for (int j = 0; j < dataGridView1.RowCount-1; j++)
- {
- dataGridView1.Rows[j].Cells[i].Style.BackColor = Color.White;
- dataGridView1.Rows[j].Cells[i].Style.ForeColor = Color.Black;
- }
- }
- for (int i = 0; i < dataGridView1.Columns.Count; i++)
- {
- for (int j = 0; j < dataGridView1.Rows.Count-1; j++)
- {
- if (dataGridView1.Rows[j].Cells[i].Value.ToString().Contains(textBox1.Text))
- {
- dataGridView1.Rows[j].Cells[i].Style.BackColor = Color.AliceBlue;
- dataGridView1.Rows[j].Cells[i].Style.ForeColor = Color.Blue;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment