예제 #1
0
 public FormReportes()
 {
     InitializeComponent();
     CenterToScreen();
     bol = new ReporteBOL();
     Personas();
     EducationType();
 }
예제 #2
0
 private void Form1_Load(object sender, EventArgs e)
 {
     reporteBOL = new ReporteBOL();
     reporteBOL.CrearArchivo("Reportes.xml", "Reportes");
     reporte = new Reporte();
     desc    = "";
     pin     = "";
     timerHora.Start();
     ChangeControlStyles(btnEliminar, ControlStyles.Selectable, false);
 }
예제 #3
0
 private void FrmReporte_Load(object sender, EventArgs e)
 {
     docenteBOL     = new DocenteBOL();
     reporteBOL     = new ReporteBOL();
     historialBOL   = new HistorialBOL();
     docente        = new Docente();
     cedula         = "";
     listaHistorial = new List <Historial>();
     listaReporte   = new List <Reporte>();
     listaReporte   = reporteBOL.CargarTodo("Reportes.xml");
     listaHistorial = historialBOL.CargarTodo();
     cargarTablaDocente();
 }
예제 #4
0
 private void FrmOpciones_Load(object sender, EventArgs e)
 {
     reporteBOL = new ReporteBOL();
 }