private void timer1_Tick(object sender, EventArgs e)
{
System.Windows.Forms.Timer timer;
timer = new System.Windows.Forms.Timer();
System.TimeSpan Interval = new System.TimeSpan(3, 0, 0);
timer.Tick += new System.EventHandler(this.VCUpdate_Click);
timer.Tick += new System.EventHandler(this.ALyacUpdate_Click);
}
위 코드로 하면 오류는 없으나 3시간 주기로 발동하지 않을거같고..
--------------------------------------------------------------------------------
private void timer1_Tick(object sender, EventArgs e)
{
System.Windows.Threading.DispatcherTimer timer;
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 5); // 타이머 주기를 설정 시 : 분 : 초
timer.Tick += new EventHandler(this.VCUpdate_Click);
timer.Tick += new EventHandler(this.ALyacUpdate_Click);// 주기가 만료되면 호출되는 함수 : timer_Tick
timer.Start();
}
위 코드는 닷넷프레임워크4 인데도 System.Windows.Threading.DispatcherTimer timer; 부분의 Threading 부분과
DispatcherTimer timer = new DispatcherTimer(); 부분이 에러가 나네요... 간단한걸텐데 멘붕입니다 ㅠ |
System.TimeSpan Interval = new System.TimeSpan(0, 180, 0); 으로 하면 안되나요??