public BoringCommanderLogic(BoringCommander form)
 {
     _form = form;
     _initBasicState();
     System.Threading.Timer t = new System.Threading.Timer(_updConfig);
     t.Change(50, 50);
 }
 public BoringCommanderLogic(BoringCommander form)
 {
     _form = form;
     _initBasicState();
     System.Threading.Timer t = new System.Threading.Timer(_updConfig);
     t.Change(50, 50);
 }
Esempio n. 3
0
 static void Main()
 {
     bool a=true;
     Mutex m = new Mutex(true, "myMutexxxx", out a);
     if (!a) return;
     toAutoRun();
     Hook.StartHook();
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     mainForm = new BoringCommander();
     Application.Run(mainForm);
 }
Esempio n. 4
0
        static void Main()
        {
            bool  a = true;
            Mutex m = new Mutex(true, "myMutexxxx", out a);

            if (!a)
            {
                return;
            }
            toAutoRun();
            Hook.StartHook();
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            mainForm = new BoringCommander();
            Application.Run(mainForm);
        }