Registriert seit: 26. Mai 2004
3.159 Beiträge
|
Re: TJvDigits von JVCL
11. Nov 2005, 21:23
Hey.
Das ganz musst du so machen:
Delphi-Quellcode:
procedure TForm1.IncrementDigitCounter;
var
i : Double;
begin
i := JvgDigits1.Value;
i := i + 1;
JvgDigits1.Value := i;
end;
mfg shark
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|