Link to home
Start Free TrialLog in
Avatar of infogws
infogwsFlag for Peru

asked on

I need to run an event every 3 seconds with the Timer control in winform. net

I need to run an event every 3 seconds with the Timer control in winform. net?
anyone have any idea
I am using the timer control in visual studio 2008
Avatar of teedo757
teedo757

Try a look with a sleep function

System.Threading.Thread.Sleep(300)

Add a check variable to break the loop when needed.
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of infogws

ASKER

:)