Thema
:
Fortlaufend Hochzählen
Einzelnen Beitrag anzeigen
hathor
(Gast)
n/a Beiträge
#
2
AW: Fortlaufend Hochzählen
21. Mai 2015, 23:04
Die
Variable i
muss global deklariert sein.
Bevor die Variable i angezeigt wird - in welchem Kontext auch immer - muss sie verändert werden:
markieren
Delphi-Quellcode:
...
inc(i);
Label1.Caption:= FormatDateTime('
yymmdd
'+'
000
'+IntToStr(i),now);
...
Geändert von hathor (22. Mai 2015 um
06:43
Uhr)
Zitat