private void btnAceptar_Click(object sender, EventArgs e) { string CODIGO = Grilla.CurrentRow.Cells[0].Value.ToString(); FrmAbmCliente frm = new FrmAbmCliente(); Principal.CodigoPrincipalAbm = CODIGO; frm.Focus(); this.Close(); }
private void btnAceptar_Click(object sender, EventArgs e) { if (Grilla.CurrentRow == null) { MessageBox.Show("Debe seleccionar un elemento para continuar", Clases.cMensaje.Mensaje()); return; } string CODIGO = Grilla.CurrentRow.Cells[0].Value.ToString(); Principal.CodigoPrincipalAbm = CODIGO; string Tabla = Principal.TablaPrincipal; switch (Tabla) { case "Cliente": FrmAbmCliente frm = new FrmAbmCliente(); frm.Focus(); break; } this.Close(); }