In Delphi VCL, using this code, I can capture Windows time changes.
uses Winapi.Messages;
…
private
procedure WMTimeChange(var Msg: TMessage); message WM_TIMECHANGE;
…
procedure TForm1.WMTimeChange(var Msg: TMessage);
begin
inherited;
ShowMessage(‘time changed’);
end;
But, it doesn’t work in FireMonkey.
What is the equivalent for FireMonkey?