Ejemplo n.º 1
0
 public Kategoria(string _n, string _l, int c, Kategorie m)
 {
     nazwa = _n;
     link  = _l;
     cnt   = c;
     main  = m;
 }
Ejemplo n.º 2
0
        private void button2_Click(object sender, EventArgs e)
        {
            Kategorie k1 = new Kategorie(this);

            k1.Wczytaj();
            for (int i = 0; i < k1.KategorieL.Count(); i++)
            {
                k1.KategorieL[i].Pobierz(1);
            }
            k1.ZapisXLS();
        }
Ejemplo n.º 3
0
 private void button3_Click(object sender, EventArgs e)
 {
     Kategorie k1 = new Kategorie();
 }
Ejemplo n.º 4
0
        private void button1_Click(object sender, EventArgs e)
        {
            Kategorie k1 = new Kategorie(this);

            k1.Pobierz();
        }