home *** CD-ROM | disk | FTP | other *** search
/ DOKAN 17 / DOKAN17.iso / Progs / Pjv03dde.zip / PJV03DDE / SRCCODE / SAMPLE1 / SAMPLE1.DPR next >
Text File  |  1999-06-13  |  193b  |  14 lines

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