Multithreading?

chathura86

New member
Joined
Nov 12, 2007
Messages
1
Programming Experience
Beginner
i have a vb.net windows form where two clocks ticking in 30sec intervals.
and i want to process them in two threads.

chathura bamunusinghe
 
I assume that you mean Timers, not clocks. If you use a System.Timers.Timer instead of a System.Windows.Forms.Timer then it can raise its Elapsed event in a background thread automatically.
 
Back
Top