Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
IdDayTime1.Connect;
Label1.Caption := IdDayTime1.DayTimeStr;
IdDayTime1.Disconnect;
Label1.Caption := IdDayTime1.DayTimeStr;
procedure TForm1.Button1Click(Sender: TObject);
begin
IdTime1.Host := 'time.nist.gov';
try
IdTime1.SyncTime ;
finally
IdTime1.Disconnect;
end;
end;