private void button2_Click(object sender, EventArgs e) { DataGridViewRow current = dataGridView_GestionarClientes.CurrentRow; NuevoCliente c = new NuevoCliente(current.Cells[0].Value.ToString()); c.Show(); }
private void button1_Click(object sender, EventArgs e) { NuevoCliente nc = new NuevoCliente(); nc.Show(); }