home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / sharware / dynarray / arrtest.dpr < prev    next >
Encoding:
Text File  |  1996-05-25  |  769 b   |  27 lines

  1. program Arrtest;
  2. { Change the path names in the uses clause below to fit yur setup! }
  3. uses
  4.   Forms,
  5.   Wintypes,
  6.   Arrtest1 in 'ARRTEST1.PAS' {MainForm},
  7.   Arrtest2 in 'ARRTEST2.PAS' {InputDialog},
  8.   Arrtest3 in 'ARRTEST3.PAS' {SortDlg},
  9.   Arrtest4 in 'ARRTEST4.PAS' {TypesDlg},
  10.   Arrtest5 in 'ARRTEST5.PAS' {CopyDlg},
  11.   Arrtest6 in 'ARRTEST6.PAS' {ProgressDlg},
  12.   Arrtest7 in 'ARRTEST7.PAS' {InspectionDlg},
  13.   Arrtest8 in 'ARRTEST8.PAS' {EnlargedViewDlg},
  14.   Arrays in 'Arrays.pas',
  15.   FastMem in 'FastMem.pas';
  16.  
  17. {$R *.RES}
  18.  
  19. begin
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   If MainForm.Name = '' Then Begin
  22.     { the design-time form name is appearendly forgotten on load! }
  23.     MainForm.Name := 'MainForm';
  24.   End;
  25.   Application.Run;
  26. end.
  27.