home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / delphi / ODA10 / _SETUP.1 / Demo.dpr < prev    next >
Encoding:
Text File  |  1996-04-06  |  733 b   |  23 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   DemoGrid in 'DemoGrid.pas' {FormGrid},
  6.   DemoMain in 'DemoMain.pas' {FormMain},
  7.   DemoFastFind in 'DemoFastFind.pas' {FormFastFind},
  8.   DemoMixedToMany in 'DemoMixedToMany.pas' {FormMixedToMany},
  9.   DemoQueryToMany in 'DemoQueryToMany.pas' {FormQueryToMany},
  10.   DemoReport in 'DemoReport.pas' {FormReport},
  11.   DemoReportDef in 'DemoReportDef.pas' {FormReportDef},
  12.   DemoTableLookup in 'DemoTableLookup.pas' {FormTableLookup},
  13.   DemoTableToMany in 'DemoTableToMany.pas' {FormTableToMany};
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.Title := 'Opus DirectAccess Test';
  19.   Application.CreateForm(TFormMain, FormMain);
  20.   Application.CreateForm(TFormReportDef, FormReportDef);
  21.   Application.Run;
  22. end.
  23.