source: branches/2.20_branch/NewView/NewView.pas@ 447

Last change on this file since 447 was 36, checked in by RBRi, 19 years ago

form initialization fix

  • Property svn:eol-style set to native
File size: 688 bytes
Line 
1Program NewView;
2
3// NewView - a new OS/2 Help Viewer
4// Copyright 2003 Aaron Lawrence (aaronl at consultant dot com)
5// This software is released under the Gnu Public License - see readme.txt
6
7// Main program
8// Becomes NewView.exe
9
10Uses
11 Forms,
12 Graphics,
13 MainForm,
14
15 // don't remove this, this stuff is needed internally to
16 // initialize the forms
17 ProductInformationFormUnit,
18 OptionsForm,
19 InformationFormUnit,
20 FileDialogForm,
21 GlobalSearchForm,
22 NoteForm,
23 BookmarksFormUnit,
24 PrintDialogUnit,
25 SearchDirectoriesFormUnit;
26
27{$r NewView.scu}
28
29Begin
30 Application.Create;
31 Application.CreateForm(TMainForm, MainForm);
32 Application.Run;
33 Application.Destroy;
34End.
Note: See TracBrowser for help on using the repository browser.