I was reading Christian U. message at http://www.mail-archive.com/[email protected]/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?

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to