home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / bp7os2 / hellopm.doc < prev    next >
Text File  |  1993-12-05  |  667b  |  19 lines

  1. This information was first posted in a message by Peter Singer  100024,1603.
  2.  
  3. How to create PM apps:  (eg: HELLOPM.PAS)
  4.  
  5. Compile the program with destination OS/2 (what else??)
  6.  
  7.   BPC /CO HELLOPM.PAS    (Compile with command line. You can also use IDE.)
  8.  
  9.   MAKEPM <name>.EXE    (Mark the program as PM)
  10.  
  11.   RC -r <name>.RC    (Compile the resource script)
  12.  
  13. BPCOS2 is the patched Borland compiler.
  14.  
  15. MAKEPM is a program supplied in the patch.
  16.  
  17. RC is the resource compiler supplied with OS/2, and it must be used once to create a .RES file. You only have to use RC when the resource script is changed.
  18.  
  19. The compiler and MakePM are both DOS programs, RC is OS/2.