home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rsvprexx.zip / READ.ME < prev    next >
Text File  |  1995-05-15  |  3KB  |  89 lines

  1.              (c) Copyright Ronald Stutt 1995.
  2.                    All Rights Reserved.
  3.  
  4.                       RSVPREXX
  5.  
  6.                          by
  7.  
  8.                      Ronald Stutt
  9.  
  10.                Internet: Stutt@ibm.net
  11.  
  12.  
  13. This program extends the VisPro/Rexx language 
  14. by providing REXX external functions.
  15.  
  16.    RSVPSpace;
  17.    RSVPSplit;
  18.    RSVPText;
  19.  
  20.  
  21. Free Software:  Distribute & use freely.  However, do not alter the
  22.                 program nor this text file.
  23.  
  24. VisPro/Rexx is a trademark of HockWare, inc.
  25.  
  26. *************************************************************************
  27. *************************************************************************
  28. Function:  RSVPSpace - Vertical space
  29.  
  30.      The amount of vertical space (in pels) between the records,
  31.      used in the details view.
  32.      If you specify a value that is less than 0, a default value is used. 
  33.  
  34. Syntax:    call RSVPSpace Hwnd, spacing
  35.  
  36. Params:    spacing  - spacing in pels
  37.  
  38. *************************************************************************
  39. *************************************************************************
  40. Function:  RSVPSplit - Split bar position
  41.  
  42.      The initial position of the split bar relative to the container,
  43.      used in the details view.
  44.  
  45.  
  46. Syntax:    call RSVPSplit Hwnd, {OFF|ON} [,offset]
  47.  
  48.  
  49. Params:    offset  - offset in pels
  50.  
  51. *************************************************************************
  52. *************************************************************************
  53. Function:  RSVPText - Column headings justification
  54.    
  55.      Specify one of the following for all column heading to horizontally
  56.      position data in that column heading, used in the details view.
  57.  
  58.      CENTER  -  Horizontally centers column headings.
  59.      LEFT    -  Left-justifies column headings. This is the default.
  60.      RIGHT   -  Right-justifies column headings.
  61.   
  62.  
  63. Syntax:    call RSVPText Hwnd, {Left|Center|Right]
  64.  
  65. *************************************************************************
  66. *************************************************************************
  67. Sample
  68. Sample
  69. Sample
  70. Sample
  71. Sample
  72. In when opened event, add following lines
  73. *************************************************************************
  74.  
  75. /* register the rexx functions */
  76.    call RxFuncAdd 'RSVPLoadFuncs', 'RSVPREXX', 'RSVPLoadFuncs'
  77.    call RSVPLoadFuncs;
  78.  
  79. /* Get PM handle SEARCHCNR Container */
  80. value=VpItem(window, 'SEARCHCNR', 'GETHANDLE')
  81.  
  82. call RSVPSpace value, 0
  83. call RSVPSplit value, 'OFF'
  84. call RSVPText value, 'Left'
  85.  
  86. *************************************************************************
  87. *************************************************************************
  88.  
  89.