home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Books / 4 / EX07.ZIP / SHAPEDEM / SHAPEDEM.DPR < prev   
Encoding:
Text File  |  1994-11-17  |  147 b   |  12 lines

  1. program Shapedem;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1};
  6.  
  7. begin
  8.   Application.CreateForm(TForm1, Form1);
  9.   Application.Run;
  10. end.
  11.  
  12.