Esempio n. 1
0
        public Processor(OptionForm op) : this()
        {
            of            = op;
            autoRunTimer  = new System.Windows.Forms.Timer();
            dailyRunTimer = new System.Windows.Forms.Timer();

            autoRunTimer.Interval = dailyRunTimer.Interval = 1000;       //1000ms초 단위로
            autoRunTimer.Tick    += new EventHandler(autoRunCountDown);  //메소드 연결
            dailyRunTimer.Tick   += new EventHandler(dailyRunCountDown); //메소드 연결
            TimerSetting();                                              //count값 설정
            autoRunTimer.Start();                                        //타이머 시작
            dailyRunTimer.Start();                                       //타이머 시작
        }
Esempio n. 2
0
 public SetIDForm(Processor _processor, OptionForm _of) : this()
 {
     processor = _processor;
     of        = _of;
 }
Esempio n. 3
0
 public LogForm(Processor _processor, OptionForm _of) : this()
 {
     processor       = _processor;
     of              = _of;
     textBoxLog.Text = processor.ServerLog;  //processor에 저장된 서버 로그 표기
 }