Exemplo n.º 1
0
 public void dataClose(String naam)
 {
     if (naam == "klant")
     {
         this.klanten = null;
     }
     if (naam == "prospecties")
     {
         this.prospecties = null;
     }
     if (naam == "offertes")
     {
         this.offertes = null;
     }
     if (naam == "calculator")
     {
         this.calculator = null;
     }
     if (naam == "orders")
     {
         this.orders = null;
     }
     if (naam == "kalender")
     {
         this.kalender = null;
     }
     if (naam == "facturen")
     {
         this.facturen = null;
     }
 }
Exemplo n.º 2
0
        private void agendaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (kalender == null)
            {
                Laden.ShowSplashScreen();

                kalender           = new Kalender();
                kalender.MdiParent = this;
                Laden.CloseForm();
            }
            kalender.BringToFront();
            kalender.Show();
        }