|
Put current time to the title
Use Timer component and this code for onTimer event.
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Form1.Caption:=DateTimeToStr(Now);
end;
- Related topics
-
Get difference between of 2 dates
Get days count in month
Get week number of the year
Get age from date of birth
- For more
-
Delphi Help
- Download source
|