Forum: C# Jun 25th, 2009 |
| Replies: 2 Views: 278 I think if you save the previous combo box value in a public string, and set the combo box value equal to this string after add new record, it will solve your problem. |
Forum: C# Jun 25th, 2009 |
| Replies: 2 Views: 296 S2009, It's prefable to use dataGridView1_CellValueChanged instead of dataGridView1_CellContentClick, the code will be:
private void dataGridView1_CellValueChanged(object sender,... |