0
我的代碼如下:計時器不叫復讀功能在我的窗口服務
protected override void OnStart(string[] args)
{
//Set the interval of timer to 5 minutes.
timer1.Interval = 300000;
//Enable the timer.
timer1.Enabled = true;
repeatFunction();
}
我打電話我timer_tick事件裏面重複的功能如下:
private void timer1_Tick(object sender, EventArgs e)
{
eventLog1.WriteEntry("Timer ticked");
repeatFunction();
}
但計時器沒有滴答作響。任何機構請告訴我我哪裏出錯了。
哪個計時器和你在哪裏聲明計時器? – 2010-11-23 07:53:47