-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit2.pas
More file actions
37 lines (29 loc) · 711 Bytes
/
Unit2.pas
File metadata and controls
37 lines (29 loc) · 711 Bytes
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
32
33
34
35
36
37
unit Unit2;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Winapi.WebView2, Winapi.ActiveX,
Vcl.Edge, Vcl.StdCtrls;
type
TForm2 = class(TForm)
GroupBox1: TGroupBox;
Edit1: TEdit;
Button1: TButton;
EdgeBrowser1: TEdgeBrowser;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
channel : string;
implementation
{$R *.dfm}
procedure TForm2.Button1Click(Sender: TObject);
begin
channel := Edit1.Text;
EdgeBrowser1.Navigate('https://streamerbans.com/user/'+channel);
end;
end.