예제 #1
0
 public FormProgressionExport(FormPrincipale formPrincipale)
 {
     fp = formPrincipale;
     fp.AnalysePressePapier = false;
     InitializeComponent();
     resultat = new InterfaceServeur.ResultatDExportationDePlanetes();
     backgroundWorkerExportation.RunWorkerAsync();
 }
예제 #2
0
 public FormProgressionImport(FormPrincipale formPrincipale)
 {
     fp = formPrincipale;
     InitializeComponent();
     this.
     fp.AnalysePressePapier = false;
     backgroundWorkerImportation.RunWorkerAsync();
 }
예제 #3
0
 public FormGestionComptesOGSpy(FormPrincipale f)
 {
     fp = f;
     listeDesComptes = new listeDeParametresOGSpy();
     InitializeComponent();
     buttonSynchroniser.Enabled = false;
     chargeComptesOGSpy();
     mettreAJourLEtatDesControlesSelonLaSelection();
     groupBoxFonctionsAvancees.Hide();  // TODO: a virer une fois la fonction de synchro OK.
 }
예제 #4
0
 public FormProgressionSimulationDeMasse(FormPrincipale formPrincipale, int nombreDeSimulations)
 {
     indexASimuler            = new Collection <int>();
     modeSelection            = false;
     this.fp                  = formPrincipale;
     this.nombreDeSimulations = nombreDeSimulations;
     InitializeComponent();
     fp.AnalysePressePapier = false;
     if (fp.listViewResultats.SelectedIndices.Count > 1)
     {
         modeSelection = true;
         foreach (int i in fp.listViewResultats.SelectedIndices)
         {
             indexASimuler.Add(i);
         }
     }
     backgroundWorkerSimulationsEnMasse.RunWorkerAsync();
 }
예제 #5
0
 public FormAffichageRapport(FormPrincipale f)
 {
     InitializeComponent();
     fp = f;
 }
예제 #6
0
 FormFornitore(FormPrincipale parent)
 {
     this.parent = parent;
 }