home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / grxdm1.zip / 1OF3_IMG.ZIP / README.1ST < prev   
Text File  |  1994-04-05  |  3KB  |  76 lines

  1. -----------------------------GpfRexx Read Me file--------------------------------
  2.  
  3. This file contains information regarding GpfRexx product and
  4. documentation changes that have occurred to late to meet
  5. hardcopy production lead time.
  6.  
  7. When modifications or enhancements to GpfRexx are urgent or
  8. especialy useful, our choice is to include them in the
  9. production code as soon as they have been  thoroughly tested. 
  10. This insures that every user receives the latest version  of the
  11. product at the time of purchase.  The downside of this policy is
  12. that the printed documentation may not always be at the same
  13. level as the shipping  version of the software.  In practice,
  14. this is often the case.  
  15.  
  16. The online documentation, on the other hand, is generally
  17. updated simultaneously  with the code.  In the rare case when
  18. this does not happen, notes explaining any new features will be
  19. found here.
  20.  
  21. IMPORTANT: In the event of discrepensies between the printed
  22. documentation and the online documentation or help, assume the
  23. online information is the most  current.  This file will contain
  24. information relating to the latest changes and, if needed,
  25. information omitted even from the online information.
  26.  
  27. NOTE: OS/2 2.11 (OS/2 2.1 + SP, CSD level XR06200) GpfRexx level 10 
  28. and above contain code specifically intended to circumvent container
  29. paint problems (IBM APAR PJ12571) introduced in this version of OS/2.
  30. Other changes in this level of MMPM may cause difficulties with certain
  31. MMPM video examples included with GpfRexx.  Unless your environment 
  32. requires fixes provided by this CSD level (XR06200), our recommendation 
  33. is not to install it.
  34. -----------------------------In this release-------------------------------------
  35. NEW FUNCTIONS:
  36.  
  37. Threads:
  38.     SetPriority(TaskID,Delta,Scope)
  39.     KillThread(TaskID)
  40.  
  41. Named Pipes:
  42.     CreateNPipe('ObjectPipe','Pipe')
  43.     ConnectNPipe('ObjectPipe')
  44.     DisConnectNPipe('ObjectName')
  45.     ReadNPipe('ObjectPipe')
  46.     WriteNPipe('ObjectPipe',Data)
  47.     TransactNPipe('ObjectPipe',)
  48.     OpenNPipe('ObjectPipe','Pipe')
  49.     CloseNPipe('ObjectPipe')
  50.     WaitNPipe('Pipe')
  51.  
  52. National Language Support: 
  53.     SetHelpInstance(FileName)
  54.  
  55. NEW - UNDOCUMENTED FUNCTIONS:
  56. Interface Control:
  57.     SetImage(Object, Image, [option])
  58.         Object - Icon, Static Bitmap, NoteBook Page, 
  59.              ValueSet Component(Icon or Bitmap)
  60.         Image - Gpf Object (Icon, BitMap, or Pointer), 
  61.             external file of type ICO, BMP, or PTR
  62.         option - STRETCH for Static Bitmaps
  63.  
  64.     SetMsgInfo(Object, 'New Text')
  65.         Object - control object with current info message text
  66.         New Text - text for updated info message
  67.  
  68. SetImage:
  69.     Dynamically loads a new graphic object (icon, bitmap, ptr) to an existing
  70.     control capable of displaying such an object; e.g. Static bitmap or icon, 
  71.     a notebook page, or a graphical component of a value set (icon or bitmap).
  72.  
  73. SetMsgInfo:
  74.     Changes or updates the Info Message text (the dynamic position senstive 
  75.     help/prompt that may be displayed at the bottom of a winodw) associated 
  76.     with a specific control or object.