rtf problem
Hello,
Why my program crach with RTF component ?
Source code 6 ko
http://www.alticap.com/download/project.zip
Thank's
Why my program crach with RTF component ?
Source code 6 ko
http://www.alticap.com/download/project.zip
Thank's
Comments
did you place an frrtf object on underlying delphi form.
regards
the error is an eoserror exception 'invalid an windows handle'
system error 1400
in FR_Rich unit
in this function
procedure TfrRichView.LoadFromStream(Stream: TStream);
var
b: Byte;
n: Integer;
begin
inherited LoadFromStream(Stream);
Stream.Read(b, 1);
Stream.Read(n, 4);
if b <> 0 then RichEdit.Lines.LoadFromStream(Stream);
Stream.Seek(n, soFromBeginning);
end;
on Stream.Seek(n, soFromBeginning); line
After error delphi want open fr_class.pas but i have only fr_class.dcu.
Thank's
IIRC you cannot modify the fr.inc file in the demo therefore you cannot recompile
the lib to have the frrxrichedit control.
regards