home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / REXX / API / PMREXX / PMREXXIO.HLP (.txt) < prev    next >
OS/2 Help File  |  1995-08-30  |  22KB  |  700 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Help for PMREXX ΓòÉΓòÉΓòÉ
  3.  
  4. Use PMREXX to run and debug REXX procedures. 
  5.  
  6. PMREXX is a windowed application that runs a REXX procedure. Any results 
  7. displayed by the REXX procedure are displayed in the PMREXX window. You can use 
  8. the scroll bar to view any previous output that has not been cleared. 
  9.  
  10. PMREXX also provides a single line input field so that you can supply input to 
  11. the REXX procedure or to any commands called by the REXX procedure. For more 
  12. information about using REXX procedures, see REXX Information. 
  13.  
  14. For more information about starting and using PMREXX, select these topics: 
  15.  
  16.      Using PMREXX 
  17.      Developing Procedures with PMREXX 
  18.      Tracing REXX Procedures 
  19.  
  20.  
  21. ΓòÉΓòÉΓòÉ 2. Using PMREXX ΓòÉΓòÉΓòÉ
  22.  
  23. To start PMREXX, enter PMREXX from an OS/2 command prompt followed by the name 
  24. of a REXX procedure to run: 
  25.  
  26. pmrexx myprog
  27.  
  28. You can also supply arguments for the REXX procedure. In this example, PMREXX 
  29. runs the procedure MYPROG and passes MYPROG the argument c:\test\test.data: 
  30.  
  31. pmrexx myprog c:\test\test.data
  32.  
  33. PMREXX runs the REXX procedure and displays any output generated by it in a 
  34. scrollable output box that is part of the PMREXX window. If the procedure 
  35. prompts you for input, the prompt is displayed in the output box, but you type 
  36. the response in the smaller input box near the top of the PMREXX window. 
  37.  
  38. To try it, start another OS/2 session and create this REXX procedure: 
  39.  
  40. /* DIRTEST.CMD -- displays directory contents */
  41. do forever
  42.    say 'Enter the name of a directory'
  43.    parse upper pull response
  44.    if response='QUIT' then leave
  45.    'dir' response
  46. end
  47. exit
  48.  
  49. Then start PMREXX again for the DIRTEST procedure: 
  50.  
  51. pmrexx dirtest
  52.  
  53. When the PMREXX window is displayed, you will see the prompt in the output box. 
  54. Position the cursor in the input box, type the name of a directory, and press 
  55. Enter. The contents of the directory will be listed in the output box, and 
  56. another prompt will be displayed. 
  57.  
  58. When amount of displayed output exceeds the size of the output box, a slider 
  59. box appears in the scroll bar. 
  60.  
  61. To end the DIRTEST program, enter QUIT in the input box. 
  62.  
  63.  
  64. ΓòÉΓòÉΓòÉ 3. Developing Procedures with PMREXX ΓòÉΓòÉΓòÉ
  65.  
  66. To use PMREXX as a miniature development environment for your procedures, run 
  67. PMREXX in one OS/2 session and an editor in another session. 
  68.  
  69. Use the editor to change and save the procedure being developed. Then switch to 
  70. the PMREXX session to run the modified procedure. 
  71.  
  72. You can restart a procedure from PMREXX by selecting Trace from the action bar 
  73. in the PMREXX window. If the procedure is running, select Halt procedure to 
  74. stop it, then select Restart from the menu. Otherwise, just select Restart. The 
  75. latest version of the procedure will run again. 
  76.  
  77.  
  78. ΓòÉΓòÉΓòÉ 4. Tracing REXX Procedures ΓòÉΓòÉΓòÉ
  79.  
  80. PMREXX includes several functions that are useful for debugging your 
  81. procedures. You can, for instance, start an interactive trace from PMREXX 
  82. without having to add a TRACE instruction to your procedure. Select Trace on 
  83. the action bar, and then select Interactive trace on. A check mark on the menu 
  84. shows that interactive tracing is on. To stop the interactive trace, just 
  85. select Interactive trace on again. One advantage of using the interactive trace 
  86. from PMREXX is that you can turn the trace on and off while the program is 
  87. running. 
  88.  
  89. Once tracing is active, you can step through your procedure one clause at at 
  90. time, re-do a clause that was just processed, or enter a line of REXX clauses 
  91. for immediate processing. The ability to enter REXX clauses is especially 
  92. useful if you want to try a fix to a problem interactively or if you want to 
  93. test instruction paths that are otherwise difficult to trigger. For example, 
  94. you might want to test some error handling instructions, but cannot easily 
  95. create the condition that would cause the error. By using the interactive 
  96. trace, you can add REXX instructions at the right moment to fake the conditions 
  97. that would cause the error handling instructions to be processed. 
  98.  
  99. To process a line of one or more REXX clauses, type the line in the PMREXX 
  100. input box when tracing is active and press ENTER. For example, you could enter: 
  101.  
  102. do i=1 to 10; say 'hello' i; end
  103.  
  104. The line is processed before the next REXX clause in the program is processed. 
  105. If you simply want to step ahead to the next clause, press Enter without typing 
  106. anything in the input area. You can also step ahead by selecting Trace next 
  107. clause from the Trace menu. If you want to process the last REXX clause again, 
  108. select Re-do last clause from the Tracemenu. 
  109.  
  110. To stop tracing, select Trace off from the Trace. This item is not selectable 
  111. when the REXX procedure is waiting for user input. In this case select 
  112. Interactive trace on again to stop the trace. 
  113.  
  114.  
  115. ΓòÉΓòÉΓòÉ 5. Help for File ΓòÉΓòÉΓòÉ
  116.  
  117. Use the choices on the File pull-down to save the contents of the output 
  118. window, to set properties of the output window, and to exit PMREXX. 
  119.  
  120.  
  121. ΓòÉΓòÉΓòÉ 6. Help for Save ΓòÉΓòÉΓòÉ
  122.  
  123. Use Save on the File pull down menu to save the text displayed in the PMREXX 
  124. window. If you have previously saved the output window, the text is written to 
  125. that same file. Otherwise, the Save as dialog box is displayed so that you can 
  126. select a file. 
  127.  
  128.  
  129. ΓòÉΓòÉΓòÉ 7. Help for Save As ΓòÉΓòÉΓòÉ
  130.  
  131. Use Save as to name and save a new file or to save an existing file under a 
  132. different name, in a different directory, or on a different disk. When you 
  133. choose Save as, a pop-up is displayed. 
  134.  
  135.  
  136. ΓòÉΓòÉΓòÉ 8. Help for Properties ΓòÉΓòÉΓòÉ
  137.  
  138. Use Properties to set PMREXX fonts and to indicate whether output from REXX 
  139. procedures should be appended to any existing text in the output window. 
  140.  
  141.  
  142. ΓòÉΓòÉΓòÉ 9. Help for Font ΓòÉΓòÉΓòÉ
  143.  
  144. Use Font to display the text in the output window in a different font.  When 
  145. you choose Font, a pop-up is displayed. 
  146.  
  147.  
  148. ΓòÉΓòÉΓòÉ 10. Help for Append Results ΓòÉΓòÉΓòÉ
  149.  
  150. Use Append Results if you want the results of REXX procedures to be appended to 
  151. the output window. If Append Results is not selected, the output window is 
  152. cleared each time you run the REXX procedure. 
  153.  
  154.  
  155. ΓòÉΓòÉΓòÉ 11. Help for Exit ΓòÉΓòÉΓòÉ
  156.  
  157. Use Exit to close PMREXX. 
  158.  
  159.  
  160. ΓòÉΓòÉΓòÉ 12. Help for Edit ΓòÉΓòÉΓòÉ
  161.  
  162. Use the choices on the Edit pull-down to cut, copy, paste, delete, or search 
  163. the contents of the output window. 
  164.  
  165.  
  166. ΓòÉΓòÉΓòÉ 13. Help for Cut ΓòÉΓòÉΓòÉ
  167.  
  168. Use Cut to move or delete selected text from the output window.  A copy of the 
  169. text is moved to the Clipboard. 
  170.  
  171. You can use the Paste choice to insert the text from the Clipboard into the 
  172. input window. 
  173.  
  174. To select or mark text: 
  175.  
  176.    1. Position the mouse pointer to the left of the first character to be 
  177.       selected. 
  178.    2. Hold down mouse button 1; then use the mouse to drag (move) the cursor to 
  179.       the right of the last character to be selected. 
  180.    3. Release mouse button 1. 
  181.  
  182.  When the cursor comes to a window border while you are marking text, PMREXX 
  183.  scrolls past the border. This makes it possible to select more text than can 
  184.  be displayed in the window. 
  185.  
  186.  To deselect text or remove the highlighting, click once within the text area 
  187.  of the window. 
  188.  
  189.  
  190. ΓòÉΓòÉΓòÉ 14. Help for Copy ΓòÉΓòÉΓòÉ
  191.  
  192. Use Copy to duplicate selected text from the output window.  The text remains 
  193. in the output window, but a copy of the text is moved to the Clipboard. 
  194.  
  195. You can use the Paste choice to insert the text from the Clipboard into the 
  196. input window. 
  197.  
  198. To select or mark text: 
  199.  
  200.    1. Position the mouse pointer to the left of the first character to be 
  201.       selected. 
  202.    2. Hold down mouse button 1; then use the mouse to drag (move) the cursor to 
  203.       the right of the last character to be selected. 
  204.    3. Release mouse button 1. 
  205.  
  206.  When the cursor comes to a window border while you are marking text, PMREXX 
  207.  scrolls past the border. This makes it possible to select more text than can 
  208.  be displayed in the window. 
  209.  
  210.  To deselect text or remove the highlighting, click once within the text area 
  211.  of the window. 
  212.  
  213.  
  214. ΓòÉΓòÉΓòÉ <hidden> Selected Text:definition ΓòÉΓòÉΓòÉ
  215.  
  216. To select text means to highlight the text that you want to delete or move. 
  217. You delete or move selected text by using the Cut, Delete, Copy, or Paste 
  218. choices on the Edit pull-down. 
  219.  
  220.  
  221. ΓòÉΓòÉΓòÉ <hidden> Clipboard:definition ΓòÉΓòÉΓòÉ
  222.  
  223. A clipboard is an area of storage that can temporarily hold data that is 
  224. available to other programs. 
  225.  
  226.  
  227. ΓòÉΓòÉΓòÉ 15. Help for Paste ΓòÉΓòÉΓòÉ
  228.  
  229. Use Paste to insert the text from the Clipboard into the input window.  Press 
  230. Enter to pass the text you have pasted in the input window into the REXX 
  231. program. 
  232.  
  233. If text is selected, the text from the Clipboard will replace the selected 
  234. text. 
  235.  
  236. Note:  Use Copy or Cut to put text on the Clipboard. 
  237.  
  238.  
  239. ΓòÉΓòÉΓòÉ 16. Help for Delete ΓòÉΓòÉΓòÉ
  240.  
  241. Use Delete to delete selected text from the output window. 
  242.  
  243. To delete selected text: 
  244.  
  245.    1. Select the text to be deleted. 
  246.    2. Select Edit. 
  247.    3. Select Delete. 
  248.  
  249.  
  250. ΓòÉΓòÉΓòÉ 17. Help for Select All ΓòÉΓòÉΓòÉ
  251.  
  252. Use Select all to select all of the text in the output window.  You can then 
  253. perform some action on this text.  (For example, you could copy all the text to 
  254. the clipboard.) 
  255.  
  256.  
  257. ΓòÉΓòÉΓòÉ 18. Help for Deselect All ΓòÉΓòÉΓòÉ
  258.  
  259. Use Deselect All to deselect all selected text in the output window. 
  260.  
  261.  
  262. ΓòÉΓòÉΓòÉ 19. Help for Search ΓòÉΓòÉΓòÉ
  263.  
  264. Use Search to search for a string in the PMREXX output window. 
  265.  
  266.  
  267. ΓòÉΓòÉΓòÉ 20. Help for Trace ΓòÉΓòÉΓòÉ
  268.  
  269. Use the choices on the Trace pull-down menu to set tracing on or off and to 
  270. halt and restart REXX procedures. 
  271.  
  272.  
  273. ΓòÉΓòÉΓòÉ 21. Help for Restart ΓòÉΓòÉΓòÉ
  274.  
  275. Use Restart to start a PMREXX procedure again. 
  276.  
  277.  
  278. ΓòÉΓòÉΓòÉ 22. Help for Interactive trace on ΓòÉΓòÉΓòÉ
  279.  
  280. Use Interactive trace on to start an interactive trace. Interactive Trace is 
  281. used for debugging your program. 
  282.  
  283.  
  284. ΓòÉΓòÉΓòÉ 23. Help for Halt Procedure ΓòÉΓòÉΓòÉ
  285.  
  286. Use Halt procedure to stop a PMREXX program. 
  287.  
  288.  
  289. ΓòÉΓòÉΓòÉ 24. Help for Trace next clause ΓòÉΓòÉΓòÉ
  290.  
  291. Use Trace next clause to step to the next clause in the PMREXX procedure. 
  292. Using this choice is the same as entering a blank line in the input field. 
  293.  
  294.  
  295. ΓòÉΓòÉΓòÉ 25. Help for Re-do last clause ΓòÉΓòÉΓòÉ
  296.  
  297. Use Re-do last clause to repeat the last PMREXX clause procedure. Using this 
  298. choice is the same as entering an equal sign (=) in the input field. 
  299.  
  300.  
  301. ΓòÉΓòÉΓòÉ 26. Help for Trace off ΓòÉΓòÉΓòÉ
  302.  
  303. Use Trace off to turn off the debugging procedure in your program session. 
  304.  
  305.  
  306. ΓòÉΓòÉΓòÉ <hidden> Help for Save as ΓòÉΓòÉΓòÉ
  307.  
  308.  
  309. ΓòÉΓòÉΓòÉ <hidden> Help for Save as ΓòÉΓòÉΓòÉ
  310.  
  311.    1. Select the down arrow to the right of the Drive list to display all the 
  312.       drives on your system. 
  313.    2. Select a drive from the Drive list. 
  314.    3. Select a directory from the Directory list. 
  315.    4. Type the name of the file in which you want to save the contents of the 
  316.       output window in the Save as file name field and select the Ok 
  317.       pushbutton. 
  318.  
  319.  For specific help, select a topic below. 
  320.  
  321.  
  322. ΓòÉΓòÉΓòÉ <hidden> List of Fields ΓòÉΓòÉΓòÉ
  323.  
  324.  Save as filename       Save file as type 
  325.  Drive                  File 
  326.  Directory              Ok pushbutton 
  327.  Cancel pushbutton 
  328.  
  329.  
  330. ΓòÉΓòÉΓòÉ <hidden> Help for Save as filename ΓòÉΓòÉΓòÉ
  331.  
  332.  
  333. ΓòÉΓòÉΓòÉ <hidden> Help for Save as filename ΓòÉΓòÉΓòÉ
  334.  
  335. Type the name of the file in which you want to place the contents of the output 
  336. window in the Save as filename field and select the Ok pushbutton. 
  337.  
  338. For more help, select a topic below. 
  339.  
  340.  
  341. ΓòÉΓòÉΓòÉ <hidden> List of Fields ΓòÉΓòÉΓòÉ
  342.  
  343.  Save as filename       Save file as type 
  344.  Drive                  File 
  345.  Directory              Ok pushbutton 
  346.  Cancel pushbutton      General help 
  347.  
  348.  
  349. ΓòÉΓòÉΓòÉ <hidden> Help for Save file as type ΓòÉΓòÉΓòÉ
  350.  
  351.  
  352. ΓòÉΓòÉΓòÉ <hidden> Help for Save file as type ΓòÉΓòÉΓòÉ
  353.  
  354. Select the down arrow to the right of the Save file as type field to display 
  355. the available file types.  PMREXX is set for all file types. 
  356.  
  357. For more help, select a topic below. 
  358.  
  359.  
  360. ΓòÉΓòÉΓòÉ <hidden> Help for Drive ΓòÉΓòÉΓòÉ
  361.  
  362.  
  363. ΓòÉΓòÉΓòÉ <hidden> Help for Drive ΓòÉΓòÉΓòÉ
  364.  
  365. The Drive list displays the drives on your system.  Select the drive that 
  366. contains the file in which you want to place the contents of the output window. 
  367.  
  368. For more help, select a topic below. 
  369.  
  370.  
  371. ΓòÉΓòÉΓòÉ <hidden> Help for File ΓòÉΓòÉΓòÉ
  372.  
  373.  
  374. ΓòÉΓòÉΓòÉ <hidden> Help for File ΓòÉΓòÉΓòÉ
  375.  
  376. The File list displays all the files in the directory you selected from the 
  377. Directory list.  Select the file in which you want to place the contents of the 
  378. output window. 
  379.  
  380. For more help, select a topic below. 
  381.  
  382.  
  383. ΓòÉΓòÉΓòÉ <hidden> Help for Directory ΓòÉΓòÉΓòÉ
  384.  
  385.  
  386. ΓòÉΓòÉΓòÉ <hidden> Help for Directory ΓòÉΓòÉΓòÉ
  387.  
  388. The Directory list displays the directories on the selected drive.  Select a 
  389. directory to display the list of files from that directory in the File list 
  390. box. 
  391.  
  392. For more help, select a topic below. 
  393.  
  394.  
  395. ΓòÉΓòÉΓòÉ <hidden> Help for Ok ΓòÉΓòÉΓòÉ
  396.  
  397.  
  398. ΓòÉΓòÉΓòÉ <hidden> Help for Ok ΓòÉΓòÉΓòÉ
  399.  
  400. Select the Ok pushbutton to save the contents of the output window to the file, 
  401. drive, and directory you selected and with the file name you specified. 
  402.  
  403. For more help, select a topic below. 
  404.  
  405.  
  406. ΓòÉΓòÉΓòÉ <hidden> Help for Cancel ΓòÉΓòÉΓòÉ
  407.  
  408.  
  409. ΓòÉΓòÉΓòÉ 27. Help for Cancel ΓòÉΓòÉΓòÉ
  410.  
  411. Select Cancel to close the dialog box without saving the contents of PMREXX 
  412. output window in a file. 
  413.  
  414.  
  415. ΓòÉΓòÉΓòÉ 28. Help for PMREXX Font Selection ΓòÉΓòÉΓòÉ
  416.  
  417. Use the PMREXX Font Selection dialog box to change the font PMREXX uses for 
  418. displaying or printing text. To change fonts: 
  419.  
  420.    1. Select the device for which you are changing the font: Display or 
  421.       Printer. 
  422.    2. Select the font Name. 
  423.    3. Select the font Style. 
  424.    4. Select the font Size. 
  425.    5. Select any desired attributes under Emphasis. 
  426.    6. Select Ok. 
  427.  
  428.  As you make selections, Sample will change to show you what the font looks 
  429.  like. 
  430.  
  431.  For a detailed explanation of each field, select from the list below: 
  432.  
  433.      Name 
  434.      Style 
  435.      Size 
  436.      Outline 
  437.      Underline 
  438.      Strikeout 
  439.      Cancel push button. 
  440.  
  441.  
  442. ΓòÉΓòÉΓòÉ 29. Help for Cancel ΓòÉΓòÉΓòÉ
  443.  
  444. When Cancel is selected, the dialog box is closed. No changes are made to the 
  445. fonts. 
  446.  
  447.  
  448. ΓòÉΓòÉΓòÉ 30. Help for Ok ΓòÉΓòÉΓòÉ
  449.  
  450. When Ok is selected, the fonts are changed according to your selections. 
  451.  
  452.  
  453. ΓòÉΓòÉΓòÉ 31. Help for Name ΓòÉΓòÉΓòÉ
  454.  
  455. To select a font name, point to the arrow to the right of the Name field and 
  456. click mouse button 1. Then select the desired font from the displayed list. 
  457.  
  458.  
  459. ΓòÉΓòÉΓòÉ 32. Help for Style ΓòÉΓòÉΓòÉ
  460.  
  461. To select a font style, point to the arrow to the right of the Style field and 
  462. click mouse button 1. Then select the desired style from the displayed list. 
  463.  
  464.  
  465. ΓòÉΓòÉΓòÉ 33. Help for Size ΓòÉΓòÉΓòÉ
  466.  
  467. To select a font size, point to the arrow to the right of the Size field and 
  468. click mouse button 1. Then select the desired size from the displayed list. 
  469.  
  470.  
  471. ΓòÉΓòÉΓòÉ 34. Help for Outline ΓòÉΓòÉΓòÉ
  472.  
  473. Select Outline if you want only the outline of the characters in the font to be 
  474. displayed. 
  475.  
  476.  
  477. ΓòÉΓòÉΓòÉ 35. Help for Underline ΓòÉΓòÉΓòÉ
  478.  
  479. Select Underline if you want all characters to be underlined. 
  480.  
  481.  
  482. ΓòÉΓòÉΓòÉ 36. Help for Strikeout ΓòÉΓòÉΓòÉ
  483.  
  484. Select Strikeout if you want a horizontal line to be drawn through all 
  485. characters. 
  486.  
  487.  
  488. ΓòÉΓòÉΓòÉ 37. Help for Display ΓòÉΓòÉΓòÉ
  489.  
  490. Select the Display check box if you want to change the font used for the output 
  491. window display. 
  492.  
  493.  
  494. ΓòÉΓòÉΓòÉ 38. Help for Print ΓòÉΓòÉΓòÉ
  495.  
  496. Select the Print check box if you want to change the font used when the output 
  497. window is printed. 
  498.  
  499.  
  500. ΓòÉΓòÉΓòÉ 39. Help for Search ΓòÉΓòÉΓòÉ
  501.  
  502. Use the Search dialog to find text in the PMREXX output window. 
  503.  
  504.  
  505. ΓòÉΓòÉΓòÉ 40. Help for Case Sensitive ΓòÉΓòÉΓòÉ
  506.  
  507. Select the Case sensitive check box if you want PMREXX to consider capital and 
  508. small letters in its search. 
  509.  
  510.  
  511. ΓòÉΓòÉΓòÉ 41. Help for Enter search text ΓòÉΓòÉΓòÉ
  512.  
  513. Type the string of text to be found in the Enter search text field. 
  514.  
  515.  
  516. ΓòÉΓòÉΓòÉ 42. Help for Search ΓòÉΓòÉΓòÉ
  517.  
  518. Use the Search dialog box to search for strings of text in the output window: 
  519.  
  520.    1. Type the text to be found in the Enter search text field. 
  521.  
  522.    2. Select the Case sensitive check box if you want the capital and small 
  523.       letters to be significant. 
  524.  
  525.    3. Select Ok. 
  526.  
  527.  
  528. ΓòÉΓòÉΓòÉ 43. Help for Ok ΓòÉΓòÉΓòÉ
  529.  
  530. Select the Ok push button to start the search. 
  531.  
  532.  
  533. ΓòÉΓòÉΓòÉ 44. Help for Cancel ΓòÉΓòÉΓòÉ
  534.  
  535. Select the Cancel push button to close the Search dialog box without searching 
  536. for text. 
  537.  
  538.  
  539. ΓòÉΓòÉΓòÉ 45. Help for Key Assignments ΓòÉΓòÉΓòÉ
  540.  
  541. Select the key group you want help for: 
  542.  
  543.      HELP KEYS to get help and manage help information 
  544.  
  545.      SYSTEM KEYS to switch among open programs, groups, and online documents 
  546.  
  547.      WINDOW MOVEMENT KEYS to move around in a program, group, or help window, 
  548.       or to move or size a window 
  549.  
  550.      POP-UP KEYS to move around in or complete a pop-up. 
  551.  
  552.  When two key names are joined by a plus sign (+), use these two keys together. 
  553.  Hold down the first key and press the second key. 
  554.  
  555.  
  556. ΓòÉΓòÉΓòÉ <hidden> Help for Help Keys ΓòÉΓòÉΓòÉ
  557.  
  558. From any active window: 
  559.  
  560.  Alt+F6 
  561.       Switch between the help window and the associated program window 
  562.  F1 
  563.       Get help for the active area 
  564.  
  565.  From any active window that has a Help action bar choice: 
  566.  
  567.  F2 
  568.       Display general information about the program 
  569.  F9 
  570.       Display a list of keys for the program 
  571.  F11 or Shift+F1 
  572.       Display the help index for the program 
  573.  Shift+F10 
  574.       Get help about the help facility 
  575.  
  576.  From any active help window: 
  577.  
  578.  Alt+F4 
  579.       Close the help window 
  580.  Esc 
  581.       Redisplay the previous help topic, if there is one; if not, remove the 
  582.       help window 
  583.  Ctrl+A 
  584.       Copy the displayed topic and add it to the end of a temporary file 
  585.  Ctrl+C 
  586.       Display the help table of contents 
  587.  Ctrl+F 
  588.       Copy the displayed topic to a temporary file 
  589.  Ctrl+H 
  590.       Display a list of all the topics you have viewed 
  591.  Ctrl+L 
  592.       Display a list of libraries that contain help topics for one or more 
  593.       programs 
  594.  Ctrl+N 
  595.       Open a new help window to display any topic that is displayed in a window 
  596.       where the minimize and maximize choices in the System Menu pull-down are 
  597.       displayed and available 
  598.  Ctrl+S 
  599.       Search for a word or phrase in help topics 
  600.  Ctrl+Ins 
  601.       Copy the displayed topic to the clipboard 
  602.  
  603.  From any active Contents window that has multiple levels of help topics: 
  604.  
  605.  Ctrl+* (Asterisk) 
  606.       Display all levels of the table of contents 
  607.  Ctrl+- (Minus) 
  608.       Remove all subtopics from the table of contents 
  609.  + (Plus) 
  610.       Display one more level of topics in the table of contents 
  611.  * (Asterisk) 
  612.       Display all subtopics for one topic in the table of contents 
  613.  - (Minus) 
  614.       Remove all subtopics from one topic in the table of contents 
  615.  Tab 
  616.       Move to the next word or phrase that has special highlighting 
  617.  
  618.  
  619. ΓòÉΓòÉΓòÉ <hidden> Help for System Keys ΓòÉΓòÉΓòÉ
  620.  
  621.  Alt+Esc or Alt+Tab 
  622.       Switch to the next program (windowed or full-screen), group, or online 
  623.       document 
  624.  Ctrl+Esc 
  625.       Switch to the Task List 
  626.  
  627.  
  628. ΓòÉΓòÉΓòÉ <hidden> Help for Window Movement Keys ΓòÉΓòÉΓòÉ
  629.  
  630.  F3 
  631.       Close the active program window 
  632.  F10 or Alt 
  633.       Switch to or from the action bar 
  634.  Arrow keys 
  635.       Move among choices 
  636.  End 
  637.       Move to the last choice in a pull-down 
  638.  Esc 
  639.       Remove an action bar pull-down or the System Menu pull-down but keep the 
  640.       action bar choice or the System Menu icon selected 
  641.  First letter 
  642.       Select from a list the next choice that starts with the letter you type 
  643.  Home 
  644.       Move to the first choice in a pull-down 
  645.  PgUp 
  646.       Scroll the contents of a window up one page 
  647.  PgDn 
  648.       Scroll the contents of a window down one page 
  649.  Underlined letter 
  650.       Select a choice on the action bar or a pull-down 
  651.  Alt+F4 
  652.       Close the active program window 
  653.  Alt+F5 
  654.       Restore the active program window 
  655.  Alt+F7 
  656.       Move the active program window 
  657.  Alt+F8 
  658.       Size the active program window 
  659.  Alt+F9 
  660.       Minimize the active program window 
  661.  Alt+F10 
  662.       Maximize the active program window 
  663.  Ctrl+PgDn 
  664.       Scroll the contents of a window right one page 
  665.  Ctrl+PgUp 
  666.       Scroll the contents of a window left one page 
  667.  Shift+Esc or Alt+Spacebar 
  668.       Switch to or from the System Menu pull-down 
  669.  Shift+Esc or Alt 
  670.       Switch to or from the System Menu pull-down of an OS/2 or a DOS window 
  671.  
  672.  
  673. ΓòÉΓòÉΓòÉ <hidden> Help for Pop-Up Keys ΓòÉΓòÉΓòÉ
  674.  
  675.  Alt+F6 
  676.       Switch between the pop-up and the help window 
  677.  Enter 
  678.       Send any changes to the program 
  679.  Esc 
  680.       Remove the pop-up without sending any changes to the program 
  681.  F1 
  682.       Get help for the active area 
  683.  Spacebar 
  684.       Select a check box choice or perform the task described in the selected 
  685.       pushbutton 
  686.  Tab 
  687.       Move to the next field (entry field, check box, list, spin button, first 
  688.       radio button, or first pushbutton) 
  689.  
  690.  In an entry field: 
  691.  
  692.  Backspace 
  693.       Delete the character to the left of the cursor 
  694.  Del 
  695.       Delete the character to the right of the cursor 
  696.  End or Ctrl+Right Arrow key 
  697.       Move to the end of a field 
  698.  Home or Ctrl+Left Arrow key 
  699.       Move to the beginning of a field 
  700.