I'm afraid that is not possible.could the Clocks Lib be modified so as to accept a time offset?
Aclock.SetBackgroundImage(LoadBitmap(File.DirAssets, "clock1.png"))
No. AnalogClock inherits from the basic View object and has no additional methods or properties so you can't do some things you might expect, like change the time or the colour of the hands.Is there a way to change color of the clock hands?
Panel1.Initialize("")
Activity.AddView(Panel1,10dip,10dip,Activity.Width-20dip,Activity.Width-20dip)
Clock.Initialize("")
Panel1.AddView(Clock,0,0,Panel1.Width,Panel1.Height)
Sub Activity_Create(FirstTime As Boolean)
...
Chrono.Initialize("Chrono")
Activity.AddView(Chrono, 20dip, 60dip, 200dip, 60dip)
Chrono.Color = Colors.RGB(255,102,0)
Chrono.TextSize = 40dip
Chrono.TextColor = Colors.RGB(250,235,215)
Chrono.Gravity = Gravity.CENTER
Chrono.Format = "H:MM:SS"
...
End Sub