Originally Posted By: ShaneEP
This may or may not be an issue, but it doesnt look right to me...
 Code:
$Timer = $Form.Timer("600,0,0,15,15")
$Timer.OnTimer = "UpdateClock()"
maybe should be
 Code:
$Timer = $Form.Timer()
$Timer.Interval = 600 ; number of milliseconds
$Timer.OnTick = "UpdateClock()"
thanks shane I changed it and it still worked