Autor Beitrag
kandesbunzler
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 116
Erhaltene Danke: 1


Delphi 7, XE2
BeitragVerfasst: Mo 14.06.21 22:12 
Hallo,

heute habe ich einen Knoten im Gedankengang: Wie kann ich bspw. die Systemzeit einschließlich Millisekunden darstellen?
ausblenden Delphi-Quelltext
1:
2:
3:
4:
...  
  Systemzeit := Now; 
  Form1.Label1.Caption := TimeToStr(Systemzeit);     // Format soll so aussehen: '00:00:00:000')
...

Danke!

Moderiert von user profile iconTh69: Delphi-Tags hinzugefügt
jaenicke
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 19272
Erhaltene Danke: 1740

W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
BeitragVerfasst: Di 15.06.21 05:20 
Schau dir einmal FormatDateTime an:
docwiki.embarcadero....Utils.FormatDateTime