コード例 #1
0
 public FrmTechnicalComputers(Technician tech)
 {
     InitializeComponent();
     this.tech = tech;
     CoreProcedure.LoadComputers();
     this.showIndex = 2;
 }
コード例 #2
0
 public FrmRecepcionistComputers(Receptionist recepcionist)
 {
     InitializeComponent();
     CoreProcedure.LoadComputers();
     this.recepcionist = recepcionist;
     this.showIndex    = 0;
     this.toDo         = ToDo.Repair;
 }
コード例 #3
0
 private void FrmTechnicalComputers_FormClosing(object sender, FormClosingEventArgs e)
 {
     try
     {
         CoreProcedure.LoadComputers();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
 }