Menu

[r2026]: / trunk / Src / CodeSnip.dpr  Maximize  Restore  History

Download this file

413 lines (403 with data), 17.5 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
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{
* CodeSnip.dpr
*
* Application project file.
*
* $Rev$
* $Date$
*
* ***** BEGIN LICENSE BLOCK *****
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* The Original Code is CodeSnip.dpr
*
* The Initial Developer of the Original Code is Peter Johnson
* (http://www.delphidabbler.com/).
*
* Portions created by the Initial Developer are Copyright (C) 2005-2012 Peter
* Johnson. All Rights Reserved.
*
* Contributors:
* NONE
*
* ***** END LICENSE BLOCK *****
}
program CodeSnip;
{$ALIGN 8}
{$APPTYPE GUI}
{$BOOLEVAL ON}
{$DESCRIPTION 'Code Snippets Database Manager and Viewer'}
{$EXTENDEDSYNTAX ON}
{$HINTS ON}
{$IOCHECKS ON}
{$LONGSTRINGS ON}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$TYPEDADDRESS OFF}
{$WARNINGS ON}
{$WRITEABLECONST OFF}
uses
Forms,
Windows,
GIFImage in '3rdParty\GIFImage.pas',
LVEx in '3rdParty\LVEx.pas',
PJMD5 in '3rdParty\PJMD5.pas',
PJShellFolders in '3rdParty\PJShellFolders.pas',
PJStreamWrapper in '3rdParty\PJStreamWrapper.pas',
PJSysInfo in '3rdParty\PJSysInfo.pas',
PJVersionInfo in '3rdParty\PJVersionInfo.pas',
PJWdwState in '3rdParty\PJWdwState.pas',
UEncrypt in '3rdParty\UEncrypt.pas',
IntfExternalObj in 'AutoGen\IntfExternalObj.pas',
ActiveText.UHTMLRenderer in 'ActiveText.UHTMLRenderer.pas',
ActiveText.UMain in 'ActiveText.UMain.pas',
ActiveText.URTFRenderer in 'ActiveText.URTFRenderer.pas',
ActiveText.UTextRenderer in 'ActiveText.UTextRenderer.pas',
ActiveText.UValidator in 'ActiveText.UValidator.pas',
Browser.IntfDocHostUI in 'Browser.IntfDocHostUI.pas',
Browser.UControlHelper in 'Browser.UControlHelper.pas',
Browser.UController in 'Browser.UController.pas',
Browser.UHighlighter in 'Browser.UHighlighter.pas',
Browser.UHTMLEvents in 'Browser.UHTMLEvents.pas',
Browser.UIOMgr in 'Browser.UIOMgr.pas',
Browser.UNulUIHandler in 'Browser.UNulUIHandler.pas',
Browser.UUIMgr in 'Browser.UUIMgr.pas',
Compilers.UBDS in 'Compilers.UBDS.pas',
Compilers.UBorland in 'Compilers.UBorland.pas',
Compilers.UCompilerBase in 'Compilers.UCompilerBase.pas',
Compilers.UCompilers in 'Compilers.UCompilers.pas',
Compilers.UDelphi in 'Compilers.UDelphi.pas',
Compilers.UFreePascal in 'Compilers.UFreePascal.pas',
Compilers.UGlobals in 'Compilers.UGlobals.pas',
Compilers.URunner in 'Compilers.URunner.pas',
Compilers.USearchDirs in 'Compilers.USearchDirs.pas',
DB.UCategory in 'DB.UCategory.pas',
DB.UDatabaseIO in 'DB.UDatabaseIO.pas',
DB.UMain in 'DB.UMain.pas',
DB.USnippet in 'DB.USnippet.pas',
DB.USnippetKind in 'DB.USnippetKind.pas',
DBIO.UFileIOIntf in 'DBIO.UFileIOIntf.pas',
DBIO.UIniDataReader in 'DBIO.UIniDataReader.pas',
DBIO.UNulDataReader in 'DBIO.UNulDataReader.pas',
DBIO.UXMLDataIO in 'DBIO.UXMLDataIO.pas',
FmAboutDlg in 'FmAboutDlg.pas' {AboutDlg},
FmAddCategoryDlg in 'FmAddCategoryDlg.pas' {AddCategoryDlg},
FmBase in 'FmBase.pas' {BaseForm},
FmBugReportBaseDlg in 'FmBugReportBaseDlg.pas' {BugReportBaseDlg},
FmCategoryEditDlg in 'FmCategoryEditDlg.pas' {CategoryEditDlg},
FmCodeExportDlg in 'FmCodeExportDlg.pas' {CodeExportDlg},
FmCodeImportDlg in 'FmCodeImportDlg.pas' {CodeImportDlg},
FmCodeSubmitDlg in 'FmCodeSubmitDlg.pas' {CodeSubmitDlg},
FmCompErrorDlg in 'FmCompErrorDlg.pas' {CompErrorDlg},
FmCompilersDlg in 'FmCompilersDlg.pas' {CompilersDlg},
FmCompilersDlg.FrBase in 'FmCompilersDlg.FrBase.pas' {CompilersDlgBaseFrame: TFrame},
FmCompilersDlg.FrCompiler in 'FmCompilersDlg.FrCompiler.pas' {CompilersDlgCompilerFrame: TFrame},
FmCompilersDlg.FrLog in 'FmCompilersDlg.FrLog.pas' {CompilersDlgLogFrame: TFrame},
FmCompilersDlg.FrSearchDirs in 'FmCompilersDlg.FrSearchDirs.pas' {CompilersDlgSearchDirsFrame: TFrame},
FmCompilersDlg.FrSwitches in 'FmCompilersDlg.FrSwitches.pas' {CompilersDlgSwitchesFrame: TFrame},
FmCompilersDlg.UBannerMgr in 'FmCompilersDlg.UBannerMgr.pas',
FmCompilersDlg.UCompilerListMgr in 'FmCompilersDlg.UCompilerListMgr.pas',
FmDeleteCategoryDlg in 'FmDeleteCategoryDlg.pas' {DeleteCategoryDlg},
FmDependenciesDlg in 'FmDependenciesDlg.pas' {DependenciesDlg},
FmDonateDlg in 'FmDonateDlg.pas' {DonateDlg},
FmDuplicateSnippetDlg in 'FmDuplicateSnippetDlg.pas' {DuplicateSnippetDlg},
FmEasterEgg in 'FmEasterEgg.pas' {EasterEggForm},
FmEditTextDlg in 'FmEditTextDlg.pas' {EditTextDlg},
FmFindCompilerDlg in 'FmFindCompilerDlg.pas' {FindCompilerDlg},
FmFindTextDlg in 'FmFindTextDlg.pas' {FindTextDlg},
FmFindXRefsDlg in 'FmFindXRefsDlg.pas' {FindXRefsDlg},
FmGenericDlg in 'FmGenericDlg.pas' {GenericDlg},
FmGenericOKDlg in 'FmGenericOKDlg.pas' {GenericOKDlg},
FmGenericViewDlg in 'FmGenericViewDlg.pas' {GenericViewDlg},
FmHelpAware in 'FmHelpAware.pas' {HelpAwareForm},
FmMain in 'FmMain.pas' {MainForm},
FmNewsDlg in 'FmNewsDlg.pas' {NewsDlg},
FmPreferencesDlg in 'FmPreferencesDlg.pas' {PreferencesDlg},
FmPreviewDlg in 'FmPreviewDlg.pas' {PreviewDlg},
FmPrintDlg in 'FmPrintDlg.pas' {PrintDlg},
FmProxyServerDlg in 'FmProxyServerDlg.pas' {ProxyServerDlg},
FmRegistrationDlg in 'FmRegistrationDlg.pas' {RegistrationDlg},
FmRenameCategoryDlg in 'FmRenameCategoryDlg.pas' {RenameCategoryDlg},
FmSelectionSearchDlg in 'FmSelectionSearchDlg.pas' {SelectionSearchDlg},
FmSnippetsEditorDlg in 'FmSnippetsEditorDlg.pas' {SnippetsEditorDlg},
FmSnippetsEditorDlg.FrActiveTextEditor in 'FmSnippetsEditorDlg.FrActiveTextEditor.pas' {SnippetsActiveTextEdFrame: TFrame},
FmSplash in 'FmSplash.pas' {SplashForm},
FmTestCompileDlg in 'FmTestCompileDlg.pas' {TestCompileDlg},
FmTrappedBugReportDlg in 'FmTrappedBugReportDlg.pas' {TrappedBugReportDlg},
FmUpdateDlg in 'FmUpdateDlg.pas' {UpdateDlg},
FmUserBugReportDlg in 'FmUserBugReportDlg.pas' {UserBugReportDlg},
FmViewExtraDlg in 'FmViewExtraDlg.pas' {ViewExtraDlg},
FmWaitDlg in 'FmWaitDlg.pas' {WaitDlg},
FmWizardDlg in 'FmWizardDlg.pas' {WizardDlg},
FrBrowserBase in 'FrBrowserBase.pas' {BrowserBaseFrame: TFrame},
FrCategoryDescEdit in 'FrCategoryDescEdit.pas' {CategoryDescEditFrame: TFrame},
FrCategoryList in 'FrCategoryList.pas' {CategoryListFrame: TFrame},
FrCodeGenPrefs in 'FrCodeGenPrefs.pas' {CodeGenPrefsFrame: TFrame},
FrDetail in 'FrDetail.pas' {DetailFrame: TFrame},
FrDetailView in 'FrDetailView.pas' {DetailViewFrame: TFrame},
FrDisplayPrefs in 'FrDisplayPrefs.pas' {DisplayPrefsFrame: TFrame},
FrEasterEgg in 'FrEasterEgg.pas' {EasterEggFrame: TFrame},
FrFixedHTMLDlg in 'FrFixedHTMLDlg.pas' {FixedHTMLDlgFrame: TFrame},
FrGeneralPrefs in 'FrGeneralPrefs.pas',
FrHiliterPrefs in 'FrHiliterPrefs.pas' {HiliterPrefsFrame: TFrame},
FrHTMLDlg in 'FrHTMLDlg.pas' {HTMLDlgFrame: TFrame},
FrHTMLPreview in 'FrHTMLPreview.pas' {HTMLPreviewFrame: TFrame},
FrHTMLTpltDlg in 'FrHTMLTpltDlg.pas' {HTMLTpltDlgFrame: TFrame},
FrMemoPreview in 'FrMemoPreview.pas' {MemoPreviewFrame: TFrame},
FrNewsPrefs in 'FrNewsPrefs.pas' {NewsPrefsFrame: TFrame},
FrOverview in 'FrOverview.pas' {OverviewFrame: TFrame},
FrPrefsBase in 'FrPrefsBase.pas' {PrefsBaseFrame: TFrame},
FrPrintingPrefs in 'FrPrintingPrefs.pas' {PrintingPrefsFrame: TFrame},
FrRSSNews in 'FrRSSNews.pas' {RSSNewsFrame: TFrame},
FrRTFPreview in 'FrRTFPreview.pas' {RTFPreviewFrame: TFrame},
FrRTFShowCase in 'FrRTFShowCase.pas' {RTFShowCaseFrame: TFrame},
FrCheckedTV in 'FrCheckedTV.pas' {CheckedTVFrame: TFrame},
FrSelectSnippetsBase in 'FrSelectSnippetsBase.pas' {SelectSnippetsBaseFrame: TFrame},
FrSelectSnippets in 'FrSelectSnippets.pas' {SelectSnippetsFrame: TFrame},
FrSelectUserSnippets in 'FrSelectUserSnippets.pas' {SelectUserSnippetsFrame: TFrame},
FrSourcePrefs in 'FrSourcePrefs.pas' {SourcePrefsFrame: TFrame},
FrTextPreview in 'FrTextPreview.pas' {TextPreviewFrame: TFrame},
FrTitled in 'FrTitled.pas' {TitledFrame: TFrame},
Hiliter.UAttrs in 'Hiliter.UAttrs.pas',
Hiliter.UCSS in 'Hiliter.UCSS.pas',
Hiliter.UFileHiliter in 'Hiliter.UFileHiliter.pas',
Hiliter.UGlobals in 'Hiliter.UGlobals.pas',
Hiliter.UHiliters in 'Hiliter.UHiliters.pas',
Hiliter.UPasLexer in 'Hiliter.UPasLexer.pas',
Hiliter.UPasParser in 'Hiliter.UPasParser.pas',
Hiliter.UPersist in 'Hiliter.UPersist.pas',
IntfAligner in 'IntfAligner.pas',
IntfCommon in 'IntfCommon.pas',
IntfFrameMgrs in 'IntfFrameMgrs.pas',
IntfHTMLDocHostInfo in 'IntfHTMLDocHostInfo.pas',
IntfNotifier in 'IntfNotifier.pas',
IntfPreview in 'IntfPreview.pas',
UActionFactory in 'UActionFactory.pas',
UAnchors in 'UAnchors.pas',
UAppInfo in 'UAppInfo.pas',
UBaseObjects in 'UBaseObjects.pas',
UBox in 'UBox.pas',
UBrowseForFolderDlg in 'UBrowseForFolderDlg.pas',
UBrowseProtocol in 'UBrowseProtocol.pas',
UCategoryAction in 'UCategoryAction.pas',
UCategoryListAdapter in 'UCategoryListAdapter.pas',
UClipboardHelper in 'UClipboardHelper.pas',
UCodeImportExport in 'UCodeImportExport.pas',
UCodeImportMgr in 'UCodeImportMgr.pas',
UCodeShareMgr in 'UCodeShareMgr.pas',
UColorBoxEx in 'UColorBoxEx.pas',
UColorDialogEx in 'UColorDialogEx.pas',
UColours in 'UColours.pas',
UCommandBars in 'UCommandBars.pas',
UCommonDlg in 'UCommonDlg.pas',
UComparers in 'UComparers.pas',
UCompileMgr in 'UCompileMgr.pas',
UCompileResultsLBMgr in 'UCompileResultsLBMgr.pas',
UCompResHTML in 'UCompResHTML.pas',
UConsoleApp in 'UConsoleApp.pas',
UConsts in 'UConsts.pas',
UContainers in 'UContainers.pas',
UContributors in 'UContributors.pas',
UControlStateMgr in 'UControlStateMgr.pas',
UCopyInfoMgr in 'UCopyInfoMgr.pas',
UCopySourceMgr in 'UCopySourceMgr.pas',
UCopyViewMgr in 'UCopyViewMgr.pas',
UCSSBuilder in 'UCSSBuilder.pas',
UCSSUtils in 'UCSSUtils.pas',
UCtrlArranger in 'UCtrlArranger.pas',
UDataBackupMgr in 'UDataBackupMgr.pas',
UDatabaseLoader in 'UDatabaseLoader.pas',
UDatabaseLoaderUI in 'UDatabaseLoaderUI.pas',
UDataStreamIO in 'UDataStreamIO.pas',
UDetailPageHTML in 'UDetailPageHTML.pas',
UDetailPageLoader in 'UDetailPageLoader.pas',
UDHTML in 'UDHTML.pas',
UDialogMgr in 'UDialogMgr.pas',
UDispatchList in 'UDispatchList.pas',
UDlgHelper in 'UDlgHelper.pas',
UDOSDateTime in 'UDOSDateTime.pas',
UDropDownButtons in 'UDropDownButtons.pas',
UEditSnippetAction in 'UEditSnippetAction.pas',
UEmailHelper in 'UEmailHelper.pas',
UEncodings in 'UEncodings.pas',
UEncryptor in 'UEncryptor.pas',
UExceptions in 'UExceptions.pas',
UExeFileType in 'UExeFileType.pas',
UFileProtocol in 'UFileProtocol.pas',
UFileUpdater in 'UFileUpdater.pas',
UFolderBackup in 'UFolderBackup.pas',
UFontHelper in 'UFontHelper.pas',
UFormAligner in 'UFormAligner.pas',
UGIFImageList in 'UGIFImageList.pas',
UGraphicUtils in 'UGraphicUtils.pas',
UGroups in 'UGroups.pas',
UHelpMgr in 'UHelpMgr.pas',
UHelpProtocol in 'UHelpProtocol.pas',
UHexUtils in 'UHexUtils.pas',
UHiddenRichEdit in 'UHiddenRichEdit.pas',
UHiddenWindow in 'UHiddenWindow.pas',
UHistory in 'UHistory.pas',
UHistoryMenus in 'UHistoryMenus.pas',
UHTMLBuilder in 'UHTMLBuilder.pas',
UHTMLDetailUtils in 'UHTMLDetailUtils.pas',
UHTMLDOMHelper in 'UHTMLDOMHelper.pas',
UHTMLHelp in 'UHTMLHelp.pas',
UHTMLHelpMgr in 'UHTMLHelpMgr.pas',
UHTMLTemplate in 'UHTMLTemplate.pas',
UHTMLUtils in 'UHTMLUtils.pas',
UHTTPProtocol in 'UHTTPProtocol.pas',
UImageTags in 'UImageTags.pas',
UIniDataLoader in 'UIniDataLoader.pas',
UInitialLetter in 'UInitialLetter.pas',
UIOUtils in 'UIOUtils.pas',
UIStringList in 'UIStringList.pas',
UJavaScriptUtils in 'UJavaScriptUtils.pas',
UKeysHelper in 'UKeysHelper.pas',
ULEDImageList in 'ULEDImageList.pas',
ULinkAction in 'ULinkAction.pas',
ULocales in 'ULocales.pas',
UMainDBFileReader in 'UMainDBFileReader.pas',
UMainDisplayMgr in 'UMainDisplayMgr.pas',
UMarquee in 'UMarquee.pas',
UMeasurement in 'UMeasurement.pas',
UMemoCaretPosDisplayMgr in 'UMemoCaretPosDisplayMgr.pas',
UMemoHelper in 'UMemoHelper.pas',
UMemoProgBarMgr in 'UMemoProgBarMgr.pas',
UMenuHelper in 'UMenuHelper.pas',
UMessageBox in 'UMessageBox.pas',
UMessageWindow in 'UMessageWindow.pas',
UMultiCastEvents in 'UMultiCastEvents.pas',
UNotifier in 'UNotifier.pas',
UNulDropTarget in 'UNulDropTarget.pas',
UNulFormAligner in 'UNulFormAligner.pas',
UOleClientSite in 'UOleClientSite.pas',
UOpenDialogHelper in 'UOpenDialogHelper.pas',
UOpenDialogEx in 'UOpenDialogEx.pas',
UOverviewTreeBuilder in 'UOverviewTreeBuilder.pas',
UOverviewTreeState in 'UOverviewTreeState.pas',
UPageSetupDialogEx in 'UPageSetupDialogEx.pas',
UPageSetupDlgMgr in 'UPageSetupDlgMgr.pas',
UPaypalDonateAction in 'UPaypalDonateAction.pas',
UPipe in 'UPipe.pas',
UPreferences in 'UPreferences.pas',
UPrintDocuments in 'UPrintDocuments.pas',
UPrintEngine in 'UPrintEngine.pas',
UPrintInfo in 'UPrintInfo.pas',
UPrintMgr in 'UPrintMgr.pas',
UProtocols in 'UProtocols.pas',
UQuery in 'UQuery.pas',
UREMLDataIO in 'UREMLDataIO.pas',
UReservedCategories in 'UReservedCategories.pas',
UResourceUtils in 'UResourceUtils.pas',
URFC2822Date in 'URFC2822Date.pas',
URSS20 in 'URSS20.pas',
URTFBuilder in 'URTFBuilder.pas',
URTFCategoryDoc in 'URTFCategoryDoc.pas',
URTFSnippetDoc in 'URTFSnippetDoc.pas',
URTFStyles in 'URTFStyles.pas',
URTFUtils in 'URTFUtils.pas',
USaveDialogEx in 'USaveDialogEx.pas',
USaveSnippetMgr in 'USaveSnippetMgr.pas',
USaveSourceDlg in 'USaveSourceDlg.pas',
USaveSourceMgr in 'USaveSourceMgr.pas',
USaveUnitMgr in 'USaveUnitMgr.pas',
USearch in 'USearch.pas',
USelectionIOHandler in 'USelectionIOHandler.pas',
USelectionIOMgr in 'USelectionIOMgr.pas',
USettings in 'USettings.pas',
UShowCaseCtrl in 'UShowCaseCtrl.pas',
USimpleDispatch in 'USimpleDispatch.pas',
USingleton in 'USingleton.pas',
USnipKindListAdapter in 'USnipKindListAdapter.pas',
USnippetAction in 'USnippetAction.pas',
USnippetCreditsParser in 'USnippetCreditsParser.pas',
USnippetDoc in 'USnippetDoc.pas',
USnippetExtraHelper in 'USnippetExtraHelper.pas',
USnippetHTML in 'USnippetHTML.pas',
USnippetIDs in 'USnippetIDs.pas',
USnippetsChkListMgr in 'USnippetsChkListMgr.pas',
USnippetSourceGen in 'USnippetSourceGen.pas',
USnippetsTVDraw in 'USnippetsTVDraw.pas',
USnippetValidator in 'USnippetValidator.pas',
USourceFileInfo in 'USourceFileInfo.pas',
USourceGen in 'USourceGen.pas',
UStatusBarMgr in 'UStatusBarMgr.pas',
UStringReader in 'UStringReader.pas',
UStructs in 'UStructs.pas',
UStrUtils in 'UStrUtils.pas',
USystemID in 'USystemID.pas',
USystemInfo in 'USystemInfo.pas',
UTaggedTextLexer in 'UTaggedTextLexer.pas',
UTestCompile in 'UTestCompile.pas',
UTestCompileUI in 'UTestCompileUI.pas',
UTestUnit in 'UTestUnit.pas',
UTestUnitDlgMgr in 'UTestUnitDlgMgr.pas',
UTextSnippetDoc in 'UTextSnippetDoc.pas',
UThemesEx in 'UThemesEx.pas',
UThreadEx in 'UThreadEx.pas',
UToolButtonEx in 'UToolButtonEx.pas',
UTVCheckBoxes in 'UTVCheckBoxes.pas',
UUIWidgetImages in 'UUIWidgetImages.pas',
UUniqueID in 'UUniqueID.pas',
UUnitAnalyser in 'UUnitAnalyser.pas',
UUnitsChkListMgr in 'UUnitsChkListMgr.pas',
UUpdateMgr in 'UUpdateMgr.pas',
UURIEncode in 'UURIEncode.pas',
UURIParams in 'UURIParams.pas',
UUserDBBackup in 'UUserDBBackup.pas',
UUserDBMgr in 'UUserDBMgr.pas',
UUserDetails in 'UUserDetails.pas',
UUserDetailsPersist in 'UUserDetailsPersist.pas',
UUtils in 'UUtils.pas',
UVersionInfo in 'UVersionInfo.pas',
UView in 'UView.pas',
UViewItemAction in 'UViewItemAction.pas',
UViewItemTreeNode in 'UViewItemTreeNode.pas',
UWaitForThreadUI in 'UWaitForThreadUI.pas',
UWarnings in 'UWarnings.pas',
UWBCommandBars in 'UWBCommandBars.pas',
UWBExternal in 'UWBExternal.pas',
UWBPopupMenus in 'UWBPopupMenus.pas',
UWindowSettings in 'UWindowSettings.pas',
UXMLDocConsts in 'UXMLDocConsts.pas',
UXMLDocHelper in 'UXMLDocHelper.pas',
UXMLDocumentEx in 'UXMLDocumentEx.pas',
Web.UBaseWebService in 'Web.UBaseWebService.pas',
Web.UCharEncodings in 'Web.UCharEncodings.pas',
Web.UCodeSubmitter in 'Web.UCodeSubmitter.pas',
Web.UDBDownloadMgr in 'Web.UDBDownloadMgr.pas',
Web.UDownloadMonitor in 'Web.UDownloadMonitor.pas',
Web.UExceptions in 'Web.UExceptions.pas',
Web.UHTTPEx in 'Web.UHTTPEx.pas',
Web.UInfo in 'Web.UInfo.pas',
Web.URegistrar in 'Web.URegistrar.pas',
Web.UStdWebService in 'Web.UStdWebService.pas',
Web.UXMLRequestor in 'Web.UXMLRequestor.pas';
{$Include CompilerDefines.inc}
// Include resources
{$Resource ExternalObj.tlb} // Type library file
{$Resource HTML.res} // HTML resources
{$Resource VCodeSnip.res} // Version information resource
{$Resource Resources.res} // All other resources.
begin
ReportMemoryLeaksOnShutdown := DebugHook <> 0;
Application.Initialize;
Application.MainFormOnTaskBar := True;
SplashForm := TSplashForm.Create(Application);
SplashForm.Show;
Application.ModalPopupMode := pmAuto;
Application.ProcessMessages;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.