TMSFMXClock

Hi all,


Is it possible to change time ?

I ty this :

TMSFMXClock1.Active := Trur;
TMSFMXClock1.ClockTime := EncodeTime(12, 0, 0, 0);

But time doesn't change, it's allways current time...

TIA
Thierry

Sorry, u must read


TMSFMXClock1.Active := True;

Active to true is using the current time. Please set Active to False to use the ClockTime property.

Thanks Pieter,


Ok, i suppose that I must set time manually, with TTimer.


That is correct