-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit16.pas
46 lines (36 loc) · 1.04 KB
/
Unit16.pas
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
38
39
40
41
42
43
44
45
46
unit Unit16;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Imaging.jpeg,
Vcl.ExtCtrls;
type
TForm16 = class(TForm)
Image1: TImage;
Button1: TButton;
Button2: TButton;
GroupBox1: TGroupBox;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
procedure Button2Click(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form16: TForm16;
implementation
{$R *.dfm}
uses Unit14, Unit17, Unit3;
procedure TForm16.Button1Click(Sender: TObject);
begin
if RadioButton1.Checked=true then ShowMessage('1.Îòêðîéòå ïðîãðàììó. 2.Íàæìèòå íà "Delphi äëÿ íà÷èíàþùèõ". 3.Íàæìèòå íà "7.Ïðîèãðûâàòåëü". Âñå èíòåðåñóåùåå íàéäåòå â âèäåî! Óñïåõîâ Âàì!') else Form17.Show;
end;
procedure TForm16.Button2Click(Sender: TObject);
begin
Form3.Show;
Form16.Hide;
end;
end.