Registriert seit: 2. Jul 2013
120 Beiträge
FreePascal / Lazarus
|
AW: Memo text ausdrucken
3. Jul 2013, 19:30
Gut jetzt kommt der fehler siehe Bild und da steht
Delphi-Quellcode:
function TControl.GetText: TCaption;
var
len: Integer;
GetTextMethod: TMethod;
begin
// Check if GetTextBuf is overridden, otherwise we can call RealGetText directly
Assert(Assigned(@Self.GetTextBuf), 'TControl.GetText: GetTextBuf Method is Nil');
GetTextMethod := TMethod(@Self.GetTextBuf); //<-- VERWEIS AUF DIESE ZEILE
if GetTextMethod.Code = Pointer(@TControl.GetTextBuf) then begin
Result := RealGetText;
end
else begin
// Bummer, we have to do it the compatible way.
DebugLn('Note: GetTextBuf is overridden for: ', Classname);
len := GetTextLen;
if len = 0 then begin
Result := '';
end
else begin
SetLength(Result, len+1); // make sure there is room for the extra #0
FillChar(Result[1], len, #0);
len := GetTextBuf(@Result[1], len+1);
SetLength(Result, len);
end;
end;
end;
|
|
Zitat
|