summaryrefslogtreecommitdiff
path: root/orig/pq/Info.pas
blob: d9d606dd671614e1a838c56db1192278b8d20589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
unit Info;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, OleCtrls, SHDocVw;

type
  TForm4 = class(TForm)
    WebBrowser1: TWebBrowser;
  private
    { Private declarations }
  public
    procedure Go(url: String);
  end;

var
  Form4: TForm4;

implementation

{$R *.dfm}

procedure TForm4.Go(url: String);
begin
  WebBrowser1.Navigate(url);
  Show;
end;

end.