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);
}
-------------------------------------------------------------------------
저렇게 하니 오류는 모두 사라졌습니다. 다만 Interval 부분에 timer.Interval로 안가도 되는지 궁금합니다.