home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 April / Chip_2002-04_cd1.bin / zkuste / delphi / kolekce / d3456 / PBEDIT.ZIP / PBEditPackDemo.dpr < prev    next >
Text File  |  1999-06-05  |  263b  |  15 lines

  1. program PBEditPackDemo;
  2.  
  3. uses
  4.   Forms,
  5.   PBEditPackDemo_unit in 'PBEditPackDemo_unit.pas' {PBEditPackDemoForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TPBEditPackDemoForm, PBEditPackDemoForm);
  12.   Application.Run;
  13. end.
  14.  
  15.