Revision: | 84 |
Committed: | Fri May 3 12:26:45 2019 UTC (3 years ago) by daniel-marschall |
File size: | 265 byte(s) |
Log Message: | File Read Checker 1.2 |
# | User | Rev | Content |
---|---|---|---|
1 | daniel-marschall | 84 | program FileReadChecker; |
2 | |||
3 | uses | ||
4 | Forms, | ||
5 | FileReadCheckerMain in 'FileReadCheckerMain.pas' {Form1}; | ||
6 | |||
7 | {$R *.res} | ||
8 | |||
9 | begin | ||
10 | Application.Initialize; | ||
11 | Application.MainFormOnTaskbar := True; | ||
12 | Application.CreateForm(TForm1, Form1); | ||
13 | Application.Run; | ||
14 | end. |