-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateFixer.dpr
More file actions
28 lines (25 loc) · 1.22 KB
/
UpdateFixer.dpr
File metadata and controls
28 lines (25 loc) · 1.22 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
program UpdateFixer;
uses
Vcl.Forms,
MainFormUnit in 'MainFormUnit.pas' {MainForm},
PTZPanel in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZPanel.pas',
PTZStdCtrls in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZStdCtrls.pas',
PTZSymbolButton in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZSymbolButton.pas',
PTZWinControlButton in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZWinControlButton.pas',
ColorPanel in '..\FindAll\ColorPanel.pas',
GUIPanel in '..\jv16 PowerTools\_DEV\Components\PT UI Panels\GUIPanel.pas',
GUIPanelHVList in '..\jv16 PowerTools\_DEV\Components\PT UI Panels\GUIPanelHVList.pas',
PTZGlyphButton in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZGlyphButton.pas',
FastStringCaseUtils in 'C:\Code\PT CommonCode\FastStringCaseUtils.pas',
PTZProgressBar in '..\jv16 PowerTools\_DEV\Components\CustomXE\PTZProgressBar.pas',
InternetUtils in '..\jv16 PowerTools\_DEV\_AutoUpdate\InternetUtils.pas',
Win64bitDetector in 'C:\Code\PT CommonCode\Win64bitDetector.pas',
Vcl.Themes,
Vcl.Styles;
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.