Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3. ListPerson listPerson = new ListPerson();
  4. listPerson.ShowDialog();
  5. textBox1.Text = listPerson.infoPersonDataGridView.CurrentRow.Cells[0].Value
  6. + "," + listPerson.infoPersonDataGridView.CurrentRow.Cells[1].Value + ", " +
  7. listPerson.infoPersonDataGridView.CurrentRow.Cells[2].Value;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement