Exemplo n.º 1
0
        private void btn_Nuevo_Click(object sender, EventArgs e)
        {
            this.Hide();
            operacionCliente = "N";
            MantenimientoCliente Check = new MantenimientoCliente();

            Check.Show();
        }
Exemplo n.º 2
0
        private void btn_ver_Click(object sender, EventArgs e)
        {
            operacionCliente = "V";
            try
            {
                int index = grdCliente.SelectedCells[0].RowIndex;


                objCliente = objListBusquedaTotal[index];
                this.Hide();

                MantenimientoCliente Check = new MantenimientoCliente();
                Check.Show();
            }
            catch (Exception ex)
            {
                MessageBox.Show("ERROR: " + ex.Message);
            }
        }