home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / InetXCenter / componentsinfoeditor.dpr < prev    next >
Encoding:
Text File  |  1999-08-11  |  277 b   |  16 lines

  1. { See ComponentsInfoEditorUnit1 }
  2.  
  3. program ComponentsInfoEditor;
  4.  
  5. uses
  6.   Forms,
  7.   ComponentsInfoEditorUnit1 in 'ComponentsInfoEditorUnit1.pas' {Form1};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.