Login
|
ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
delphiutils
/
trunk
/
FileReadChecker
/
FileReadChecker.dpr
Revision:
84
Committed:
Fri May 3 12:26:45 2019 UTC
(3 years, 3 months ago) by
daniel-marschall
File size:
265 byte(s)
Log Message:
File Read Checker 1.2
File Contents
#
Content
1
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
.