Here is a small refinement to your IF-THEN-ENDIF
Code:
  Temp = Seconds + Minutes + Hours + Seconds_Alarm_Set_Point + _
               Minutes_Alarm_Set_Point + Hours_Alarm_Set_Point
  IF Temp <> 0 THEN  'Not Equal to 0

  ENDIF


Hmmm...

Maybe could go to this too...

Code:
IF Temp THEN ; Any Temp value over zero will make the "IF" true
 ;do something
EndIF
This may not work with older versions of PBP.

Arch