I want to populate some text boxes while clicking the next row on the BindingNavigator.
I can use for the first text box:
textBox1.Text = dataGridView1.CurrentCell.Value.ToString();
but I also want to get the info from cells 2 and 3 into textBox2 and textBox3. How can I access these based on what row is currently selected?
Try This
OR