home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sibylft1.zip / SAMPLES.DAT / SAMPLES / DDESRV / DDESRV.PAS next >
Pascal/Delphi Source File  |  1997-03-20  |  215b  |  14 lines

  1. Program DDESrv;
  2.  
  3. Uses
  4.   Forms, Graphics, DdeSrvU1;
  5.  
  6. {$r DDESrv.scu}
  7.  
  8. Begin
  9.   Application.Create;
  10.   Application.CreateForm (TDDEServerForm, DDEServerForm);
  11.   Application.Run;
  12.   Application.Destroy;
  13. End.
  14.