home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 April / Chip_2002-04_cd1.bin / zkuste / delphi / navody / d56 / ADSI.ZIP / ADS_Example.dpr < prev    next >
Text File  |  2002-01-24  |  350b  |  17 lines

  1. program ADS_Example;
  2.  
  3. uses
  4.   Forms,
  5.   Mainform in 'Mainform.pas' {ADSForm},
  6.   adshlp in '..\..\Service\Common\adshlp.pas',
  7.   ActiveDs_TLB in '..\..\Service\Common\ActiveDs_TLB.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.Title := 'ADS Example';
  14.   Application.CreateForm(TADSForm, ADSForm);
  15.   Application.Run;
  16. end.
  17.