Help with this timer

03/25/2009 14:23 Petetoft99#1
RestartTimer = new System.Timers.Timer();
RestartTimer.Interval = (120 * 60 * 100);<<Make this Ever hour?
RestartTimer.Elapsed += new ElapsedEventHandler(RestartTimer_E);
RestartTimer.Start();

Lol what do i put there to make it ever hour im use to just numbers not that
03/25/2009 23:43 andyd123#2
Well there are 1000 MS in one second.
You're looking at 3,600 seconds.

Do the math.
03/26/2009 00:31 kinshi88#3
H x 60 = M
M x 60 = S
S x 1000 = MS