Example #1
0
 public Form1()
 {
     luceneService= new LuceneService();
     rollos = new ManejoRollos();
     funcionesImagenes = new ImageUtils();
     InitializeComponent();
     panel1.Controls.Add(pictureBox1);
     progressBar1.Value = 1;
     progressBar1.Maximum = 20;
     progressBar1.Minimum = 1;
     //fechaDesde.MinDate = new DateTime(int.Parse(Properties.Resources.AnioInicio),int.Parse(Properties.Resources.MesInicio),int.Parse(Properties.Resources.DiaInicio));
     //fechaDesde.Value = new DateTime(int.Parse(Properties.Resources.AnioInicio), int.Parse(Properties.Resources.MesInicio), int.Parse(Properties.Resources.DiaInicio));
     //fechaHasta.Value = new DateTime(int.Parse(Properties.Resources.AnioFin), int.Parse(Properties.Resources.MesFin), int.Parse(Properties.Resources.DiaFin));
 }
Example #2
0
 public Indexing()
 {
     InitializeComponent();
     luceneService = new LuceneService();
     manejoRollos = new ManejoRollos();
 }
Example #3
0
 private void btnImprimir_Click(object sender, EventArgs e)
 {
     if(Busqueda!=null)
     Busqueda.Abort();
     progressBar1.Value = 1;
     progressBar1.Maximum = 20;
     progressBar1.Minimum = 1;
     limpiezaTree();
     Busqueda = null;
     btnBuscar.Enabled = true;
     luceneService = new LuceneService();
     rollos = new ManejoRollos();
     funcionesImagenes = new ImageUtils();
 }