home295
02-16-2009, 08:09 PM
Hi guys, I'm making a project for all my things, and I want to put a clock on it, as simple as that, however, I wanted to put one without the seconds counting. Basically, now my clock has Hours, minutes and seconds counting, and I want to remove the seconds counting, just that.
Currently I'm using this code:
On Show
sPCtime = System.GetTime(TIME_FMT_MIL)
Label.SetText("Label_Time", sPCtime)
Page.StartTimer(1000);
On Timer
sPCtime = System.GetTime(TIME_FMT_MIL)
Label.SetText("Label_Time", sPCtime)
Any suggestions?
Thanks in advance ;)
Currently I'm using this code:
On Show
sPCtime = System.GetTime(TIME_FMT_MIL)
Label.SetText("Label_Time", sPCtime)
Page.StartTimer(1000);
On Timer
sPCtime = System.GetTime(TIME_FMT_MIL)
Label.SetText("Label_Time", sPCtime)
Any suggestions?
Thanks in advance ;)