Beispiel #1
0
 public ProcedimentosAdmin()
 {
     InitializeComponent();
     Fill();
     ControlsH.CreateColumns(ProcedimentosDG, typeof(Procedimento_Table));
     TimedEvent = new TimedEvent(1, 2, true, UpdateProcedimentos);
     TimedEvent.TriggerNow();
 }
 public PesquisaPessoas()
 {
     InitializeComponent();
     ControlsH.CreateColumns(PessoasDG, typeof(Table1));
     ControlsH.CreateColumns(EnderecoDG, typeof(Table2));
     TimedEvent = new TimedEvent(1, 3, true, UpdatePessoas);
     TimedEvent.TriggerNow();
 }
Beispiel #3
0
 public ProcedimentoConvenios(int proc_id)
 {
     InitializeComponent();
     Proc_ID = proc_id;
     ControlsH.CreateColumns(ConveniosDG, typeof(Table1));
     try {
         NomeProcedimentoTBL.Text = ProcedimentosLab.Select(proc_id);
         UpdateC();
     } catch (Exception ex) {
         MessageBox.Show(ex.Message);
     }
     WindowsSO.ToCenterOfScreen(this);
 }
Beispiel #4
0
 public AlertaASO()
 {
     InitializeComponent();
     ControlsH.CreateColumns(AsosDG, typeof(Table1));
     Update();
 }