home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Shell / FileAssoc.dpr next >
Encoding:
Text File  |  2000-11-11  |  310 b   |  16 lines

  1. program FileAssoc;
  2.  
  3. uses
  4.   Forms,
  5.   FileAssocU in 'FileAssocU.pas' {MainForm},
  6.   FileAssocU2 in 'FileAssocU2.pas' {ChildForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := 'File Association With DDE';
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.Run;
  15. end.
  16.