Hi,
Ich habe eine function, geschrieben in Assembler, die mir ein TIntArray (= Array of Integer) zurückgibt..
Will ich diese Werte jetzt ausgeben mit
Delphi-Quellcode:
A:= GiveMeAnIntArrayFunction;
Memo1.Lines.Clear;
for i:= 0 to High(A) do
Memo1.Lines.Add(IntToStr(A[i]));
dann gibt es eine
AV.
Lass ich die Werte so ausgeben ist alles in Ordnung:
Delphi-Quellcode:
A:= GiveMeAnIntArrayFunction;
Caption := '';
for i:= 0 to High(A) do
Caption := Caption + '|' + IntToStr(A[i]);
Falls ihr jetzt dazu noch nix sagen könnt dann kann ich auch mal Teile der function oder die ganze function posten...
PS: "Verbotene" Register wie EBX oder ähnliche lass ich in Ruhe...
Gruß
Neutral General
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."