Example #1
0
        private void btnConsultar_Click(object sender, EventArgs e)
        {
            VtnConsultaDepreciacion frm = new VtnConsultaDepreciacion();

            frm.ShowDialog();
            oDepreGeneral = frm.cls;
            set(oDepreGeneral);
            btnGuardar.Enabled = false;
        }
 private void btnConsultar_Click(object sender, EventArgs e)
 {
     VtnConsultaDepreciacion frm = new VtnConsultaDepreciacion();
     frm.ShowDialog();
     if (frm.Cancelar())
     {
         oDepreGeneral = frm.cls;
         set(oDepreGeneral);
         btnGuardar.Enabled = false;
     }
     else
     {
         limpiarControles();
         MessageBox.Show(msj.Sin_Seleccion, msj.Titulo, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
 }