简体   繁体   中英

How do I create a 3270 screen with my own menu|options?

I want to know if it is possible to create a 3270 type screen with my own options, like a program. If possible, is it done with REXX? Until now I wasn't able to find anything about that.

It depends on where your Rexx program is running. For example, if you are running Rexx in ISPF you could create an ISPF dialog .

It's not really done with REXX, but with ISPF. The panel definitions are stores as text files in your ISPPLIB concatenation and then called via the ISPF dialog service DISPLAY PANEL. This can be called from REXX, Clist, assembler etc.

You need to read the ISPF Dialog Developer's Guide and Reference. It's not referred to inthe REXX manuals.

http://publibz.boulder.ibm.com/epubs/pdf/ispzdg80.pdf

(there is a newer version, but this stuff doesn't change very much).

To see a panel definition, look in any dataset in your ISSPLIB concatenation in TSO. Use the TSO ISRDDN command to see what libraries you have allocated.

ISPPLIB - Panels SYSPROC/SYSEXEC - Clist/REXX ISPSLIB - Skeletons ISPTLIB - Tables

etc, etc.

Steve

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM