Bug of setting hours (23-->0) solved :
Code:
' Decrement Units Hours
' ---------------
If CounterC=1 then
if setdechour=2 then
IF SetHour=0 THEN
SetHour= 3
else
SetHour=SetHour-1
Endif
else
if sethour=0 then
sethour=9
else
sethour=sethour-1
endif
endif
endif
and
Code:
' Increment Units Hours
' ---------------
If CounterC=1 then
if SetDecHour=2 then
if SetHour=3 then
SetHour=0
else
SetHour=SetHour+1
endif
else
if SetHour=9 then
SetHour=0
else
SetHour=SetHour+1
endif
Endif
endif
This is it ! Best regards !
Bookmarks