Example #1
0
 public PwBot()
 {
     Instance = this;
     InitializeComponent();
     TrayIcon.Visible = false;
     Init();
 }
Example #2
0
 public PwBot()
 {
     Instance = this;
     InitializeComponent();
     OFS.Init();
     ScanClients();
     DrawAccs();
 }
Example #3
0
 public PwBot()
 {
     Instance = this;
     InitializeComponent();
     TrayIcon.Visible = false;
     OFS.Init();
     ScanClients();
     DrawAccs();
 }
Example #4
0
        private void Debug_Move(object sender, EventArgs e)
        {
            if (!this.ContainsFocus)
            {
                return;
            }
            PwBot MWI = PwBot.Instance;

            if (MWI == null)
            {
                return;
            }
            MWI.Left = Left - MWI.Width + 2 * LU.GetOS_X_Fix();
            MWI.Top  = Top;
        }
Example #5
0
 private void RunHandler()
 {
     Run();
     THH.SelfStop("RUN CLIENT: " + ACC_DESC);
     PwBot.RunClient_ButtonChange();
 }
Example #6
0
 public void ThreadRun()
 {
     PwBot.RunClient_ButtonChange();
     THH.StartNewThread(RunHandler, "RUN CLIENT: " + ACC_DESC);
 }