Skip to content

Commit 37f9aff

Browse files
committed
Other Commit
Some free component source code and setup files have been added
1 parent 4415783 commit 37f9aff

File tree

1,746 files changed

+564541
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,746 files changed

+564541
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
program Customizer;
2+
3+
uses
4+
Forms,
5+
Unit1 in 'Unit1.pas' {Form1},
6+
Unit2 in 'Unit2.pas' {Form2};
7+
8+
{$R *.res}
9+
10+
begin
11+
Application.Initialize;
12+
Application.CreateForm(TForm1, Form1);
13+
Application.CreateForm(TForm2, Form2);
14+
Application.Run;
15+
end.

0 commit comments

Comments
 (0)