Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            DataGridViewRow current = dataGridView_GestionarClientes.CurrentRow;

            NuevoCliente c = new NuevoCliente(current.Cells[0].Value.ToString());
            c.Show();
        }
Example #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     NuevoCliente nc = new NuevoCliente();
     nc.Show();
 }