Hi all,
Can someone share example of typical source code of that kind of application?
I have no problem to write ISPF panels and REXX code to interact with them, but in C++ it's a different story.
but in C++ it's a different story.
NicC wrote:I am not clear on what you want to do. Do you want to write a C++/ISPF application? If so, does C++ have the ability to call an ISPF service? If it does then the relevant manual will have examples.
What, exactly, does this mean? A 3270 terminal session is not interactive -- there is nothing done by the computer until an attention key (such as enter, clear, PF or PA key -- although there are others) is hit. Unlike Windows, for example, where every keystroke is examined by the machine only the full screen of data is processed by a 3270 session. If you expect "interactive" to mean something like a Windows session then you need to either change your expectation or accept that "interactive" (in that sense) on a mainframe cannot be done.I want to write user interactive application in C++, just as i said.
I want to write user interactive application in C++, just as i said.
NicC wrote:I want to write user interactive application in C++, just as i said.
Assuming you mean you want to write something to a screen for the user to react to, enter data and send that data to the computer you still have not answered my question. Are you wanting to use ISPF facilities to communicate or just plain C++? You can communicate without ISPF panels - just printf, or whatever, to stdout which defaults to the screen.
Which version of ISPF are you using? Up to, and including, version1 release 7 there is no C++ support.