home *** CD-ROM | disk | FTP | other *** search
- /* ViewInfo.cmd: Use Rexx MENU to access OS/2 *.INF information files */
-
- /* ADD RexxMenu function support from the RexxMenu.dll */
- if 1 = RxFuncQuery('RexxMenu') then
- CALL RxFuncAdd 'RexxMenu', 'RexxMenu', 'RexxMenu'
-
- /* Let user choose label from the end of this file */
- MenuChoice = RexxMenu('ViewInfo.cmd','/suf','.:','/com','/* ','/sort',,
- '/Prompt','FYI:','/Esc')
-
- /* If lable was chosen, then perform that command, and let it set INFO_FILE */
- if \ 0 = COMPARE(MenuChoice,'') then DO
- interpret 'CALL' INSERT(MenuChoice,'.');
- '@start /F view.exe' INFO_FILE
- end /* Do */
-
- EXIT
-
-
- /*******************************************************************/
- /* THE FOLLOWING IS THE LIST OF HELP TOPICS WHICH CAN BE LOOKED UP */
- /*******************************************************************/
-
- Workframe.Online.Help.:
- INFO_FILE = 'e:\Utl\IBMWF\HELP\DDE3WF.INF'
- RETURN
-
- CSET.2.Online.Help.:
- INFO_FILE = 'e:\Utl\IBMC\HELP\DDE4HELP.inf'
- RETURN
-
- CP.Reference.:
- /* Control Program
- */
- INFO_FILE = 'e:\toolkt20\book\GUIREF20.inf'
- RETURN
-
- SOM...System.Object.Model.:
- INFO_FILE = 'e:\toolkt20\book\SOM.inf'
- RETURN
-
- Tools.Reference.:
- /* Explanations for using the programming tools in ToolKT20
- */
- INFO_FILE = 'e:\toolkt20\book\TOOLINFO.inf'
- RETURN
-
- IPF...Information.Presentation.Facility.:
- INFO_FILE = 'e:\toolkt20\book\IPFC20.inf'
- RETURN
-
- IPF...Example.:
- /* A bare-boned example of an IPF
- */
- INFO_FILE = 'e:\toolkt20\book\IPFCEXMP.inf'
- RETURN
-
- Enhanced.Editor.Users.Guide.:
- INFO_FILE = 'e:\Utl\System\Information\EPMUSERS.INF'
- RETURN
-
- Enhanced.Editor.Technical.Reference.:
- INFO_FILE = 'e:\Utl\System\Information\EPMTECH.INF'
- RETURN
-
- Presentation.Manager.Programming.:
- INFO_FILE = 'PMREF'
- RETURN
-
- Command.Reference.:
- /* OS/2 and DOS Commands
- */
- INFO_FILE = 'c:\os2\book\cmdref.inf'
- RETURN
-
- Rexx.Command.Reference.:
- INFO_FILE = 'c:\os2\book\rexx.inf'
- RETURN
-
- Rexx.API.:
- INFO_FILE = 'e:\toolkt20\book\rexxapi.inf'
- RETURN
-