home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / explorer / explorer.dpr < prev    next >
Encoding:
Text File  |  1995-03-21  |  940 b   |  32 lines

  1. {$A+,B-,D+,F-,G+,I+,K+,L+,N-,P+,Q+,R+,S+,T-,V+,W-,X+,Y+}
  2. {$M 16384,8192}
  3.  
  4. program Explorer;
  5.  
  6. { Program copyright (c) 1995 by Charles Calvert & Steve Teixeira }
  7. { Project Name: EXPLORER }
  8.  
  9. uses
  10.   Forms,
  11.   Main in 'MAIN.PAS' {Explore},
  12.   Viewer in 'VIEWER.PAS' {FileViewer},
  13.   Dirstuff in 'DIRSTUFF.PAS' {OptionsWin},
  14.   Update in 'UPDATE.PAS' {UpdateDlg},
  15.   About in 'ABOUT.PAS' {AboutDlg},
  16.   MakeCls in 'MAKECLS.PAS',
  17.   Status in 'STATUS.PAS' {UpStatus},
  18.   Welcome in 'WELCOME.PAS' {WelcomeDlg},
  19.   Expini in 'EXPINI.PAS',
  20.   Strutils in 'STRUTILS.PAS';
  21.  
  22. begin
  23.   Application.Title := 'Delphi Explorer';
  24.   Application.HelpFile := 'explorer.hlp';
  25.   Application.CreateForm(TExplore, Explore);
  26.   Application.CreateForm(TFileViewer, FileViewer);
  27.   Application.CreateForm(TAboutDlg, AboutDlg);
  28.   Application.CreateForm(TOptionsWin, OptionsWin);
  29.   Application.CreateForm(TUpdateDlg, UpdateDlg);
  30.   Application.Run;
  31. end.
  32.