Service seems to start not properly

Alberto68

New member
Joined
Mar 19, 2008
Messages
2
Programming Experience
5-10
I create a Windows services with inside 2 timers.
OnSart event seems to call correcly one subroutine, and inside this subroutine all code is ok....but.......i enable the 2 timers with 1000 millisecond intervall (with inside some log write) but they don't work correctly....
Inside these timers i put log write but nothing appears inside my log file.

Some one can help me ???

thank you in advance
Alberto.
 
Also make sure you're not using the System.Windows.Forms.Timer, this requires a UI message loop, which windows services doesn't have.
 
Back
Top