-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunit1.pas
More file actions
50 lines (33 loc) · 711 Bytes
/
unit1.pas
File metadata and controls
50 lines (33 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
38
39
40
41
42
43
44
45
46
47
48
49
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, Menus;
type
{ TForm1 }
TForm1 = class(TForm)
Image1: TImage;
MainMenu1: TMainMenu;
MenuItem1: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure MenuItem1Click(Sender: TObject);
private
public
end;
var
Form1: TForm1;
implementation
uses FormEx, FctForm;
{$R *.lfm}
{ TForm1 }
procedure TForm1.FormCreate(Sender: TObject);
begin
FormAdjust(Self)
end;
procedure TForm1.MenuItem1Click(Sender: TObject);
begin
if not Assigned(FunctionForm) then FunctionForm.Create(Application);
FunctionForm.Show;
FunctionForm.BringToFront;
end;
end.