Guest User

Untitled

a guest
Dec 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. private void dgFleteros_CellContentClick(object sender, DataGridViewCellEventArgs e)
  2. {
  3. DataGridViewRow row = dgFleteros.CurrentRow;
  4. tbNombre.Text = Convert.ToString(row.Cells[1].Value);
  5. tbVehiculo.Text = Convert.ToString(row.Cells[3].Value);
  6. }
Add Comment
Please, Sign In to add comment