home *** CD-ROM | disk | FTP | other *** search
- {$A+,B-,D+,F-,G+,I+,K+,L+,N-,P+,Q+,R+,S+,T-,V+,W-,X+,Y+}
- {$M 16384,8192}
-
- program Explorer;
-
- { Program copyright (c) 1995 by Charles Calvert & Steve Teixeira }
- { Project Name: EXPLORER }
-
- uses
- Forms,
- Main in 'MAIN.PAS' {Explore},
- Viewer in 'VIEWER.PAS' {FileViewer},
- Dirstuff in 'DIRSTUFF.PAS' {OptionsWin},
- Update in 'UPDATE.PAS' {UpdateDlg},
- About in 'ABOUT.PAS' {AboutDlg},
- MakeCls in 'MAKECLS.PAS',
- Status in 'STATUS.PAS' {UpStatus},
- Welcome in 'WELCOME.PAS' {WelcomeDlg},
- Expini in 'EXPINI.PAS',
- Strutils in 'STRUTILS.PAS';
-
- begin
- Application.Title := 'Delphi Explorer';
- Application.HelpFile := 'explorer.hlp';
- Application.CreateForm(TExplore, Explore);
- Application.CreateForm(TFileViewer, FileViewer);
- Application.CreateForm(TAboutDlg, AboutDlg);
- Application.CreateForm(TOptionsWin, OptionsWin);
- Application.CreateForm(TUpdateDlg, UpdateDlg);
- Application.Run;
- end.
-