-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit3.pas
60 lines (48 loc) · 1.11 KB
/
Unit3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
unit Unit3;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Imaging.jpeg, Vcl.ExtCtrls,
Vcl.StdCtrls;
type
TForm3 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Image1: TImage;
Button4: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form3: TForm3;
implementation
{$R *.dfm}
uses Unit1, Unit4, Unit5, Unit6, Unit14, Unit16, Unit17, Unit18;
procedure TForm3.Button1Click(Sender: TObject);
begin
Form4.Show;
Form3.Hide;
end;
procedure TForm3.Button2Click(Sender: TObject);
begin
Form5.Show;
Form3.Hide;
end;
procedure TForm3.Button3Click(Sender: TObject);
begin
Form6.Show;
Form3.Hide;
end;
procedure TForm3.Button4Click(Sender: TObject);
begin
Form1.Show;
Form3.Hide;
end;
end.