private void btnAlarma_Click(object sender, EventArgs e) { string Patente = txtPatente.Text; string Nombre = txtNombre.Text + " " + txtApellido.Text; string Union = Patente + "&" + Nombre; Principal.Comodin = Union; Principal.CodigoPrincipalAbm = null; FrmRegistrarAlarma form = new FrmRegistrarAlarma(); form.ShowDialog(); }
private void btnEditarAlerta_Click(object sender, EventArgs e) { if (Grilla.CurrentRow == null) { MessageBox.Show("Debe seleccionar un registro"); return; } Principal.Comodin = ""; Principal.CodigoPrincipalAbm = Grilla.CurrentRow.Cells[0].Value.ToString(); FrmRegistrarAlarma frm = new FrmRegistrarAlarma(); frm.ShowDialog(); }
private void btnAgregarAlerta_Click(object sender, EventArgs e) { FrmRegistrarAlarma frm = new FrmRegistrarAlarma(); frm.ShowDialog(); }