-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesAndFolders.dpr
More file actions
32 lines (28 loc) · 1.29 KB
/
FilesAndFolders.dpr
File metadata and controls
32 lines (28 loc) · 1.29 KB
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
{*************************************************************************}
{ This file is part of Files And Folders. }
{ Copyright (c) 1997-2025 Hellogramming }
{ https://www.hellogramming.com/ }
{ }
{ Files And Folders is free software; you can redistribute it and/or }
{ modify it under the terms of the MIT License. }
{*************************************************************************}
program FilesAndFolders;
uses
Vcl.Forms,
FormAbout in 'FormAbout.pas' {AboutBox},
DateTime in 'DateTime.pas' {DateTimeBox},
SizeThread in 'SizeThread.PAS',
Main in 'Main.pas' {MainForm},
fieldslist in 'HellogrammingComponents\fieldslist.pas',
HelpAwareLabel in 'HellogrammingComponents\HelpAwareLabel.pas',
ShExDriveComboBox in 'HellogrammingComponents\ShExDriveComboBox.pas',
Utils in 'Utils.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TDateTimeBox, DateTimeBox);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.