Timothy Ha
2005-11-10 22:46:25 UTC
I was reading Christian U. message at
http://www.mail-archive.com/***@miraclec.com/msg01959.html and would
like to know the progress of using Turbopower Ipro to read HTML files.
I could load a HTML into the HTML Panel, but got errors when tried to
select a bit of text
IpHtml.pas about line 7827 I've got
{$IFDEF IP_LAZARUS}
writeln('TIpHtml.PaintSelection PatBlt not implemented');
{$ELSE}
As for loading text into HtmlPanel, this is what I did:
procedure TForm1.Button1Click(Sender: TObject);
var
h: TIpHTML;
f: TFileStream;
begin
h := TIpHTML.Create;
f := TFileStream.Create('d:\my.html', 0);
h.LoadFromStream(f);
IpHTMLPanel1.SetHtml(h);
end;
How can I copy-paste text from Ipro HtmlPanel to other applications now?
http://www.mail-archive.com/***@miraclec.com/msg01959.html and would
like to know the progress of using Turbopower Ipro to read HTML files.
I could load a HTML into the HTML Panel, but got errors when tried to
select a bit of text
IpHtml.pas about line 7827 I've got
{$IFDEF IP_LAZARUS}
writeln('TIpHtml.PaintSelection PatBlt not implemented');
{$ELSE}
As for loading text into HtmlPanel, this is what I did:
procedure TForm1.Button1Click(Sender: TObject);
var
h: TIpHTML;
f: TFileStream;
begin
h := TIpHTML.Create;
f := TFileStream.Create('d:\my.html', 0);
h.LoadFromStream(f);
IpHTMLPanel1.SetHtml(h);
end;
How can I copy-paste text from Ipro HtmlPanel to other applications now?