Exemplo n.º 1
0
 private void LoadFromTC()
 {
     for (int a = 0; a < lb.Length; a++)
     {
         lb[a].Visible = false;
         Application.DoEvents();
         tc.Load(lb[a], a); //Load to LB
         lb[a].Visible = true;
     }
     undo = new History();
     RefreshCounts();
 }
Exemplo n.º 2
0
        public bool LoadAppend()
        {
            iTagCollection iTC = new iTagCollection();

            iTC.Load();
            iTag[] iT = iTC.Get();
            for (int a = 0; a < iT.Length; a++)
            {
                SetCat(iT[a], -1);
            }
            return(false);
        }
Exemplo n.º 3
0
        private void guResume_Click(object sender, EventArgs e)
        {
            gugRoot.Enabled = false;
            prob.Text       = "Validating data...";
            proa.Value      = 33;
            Application.DoEvents();

            //Load stored tag counts
            iTagCollection tc = new iTagCollection();

            tc.Load();

            prob.Text  = "Preparing GUI...";
            proa.Value = 66;
            Application.DoEvents();

            doCat(tc, true);
        }