View previous topic :: View next topic
|
Author |
Message |
vasantdipali
New User
Joined: 06 Dec 2009 Posts: 3 Location: Mysore
|
|
|
|
Hi,
actually i want to display a rexx panel but at the same time my rexx code should continue execution,
but what is happening is that, when i display my rexx panel it actually awaits the input from user (it may be a PF key or an enter hit by the user).
is there any way where in i can display the rexx panel without making my code await user input?
Thanks,
Vasant. |
|
Back to top |
|
|
dbzTHEdinosauer
Global Moderator
Joined: 20 Oct 2006 Posts: 6966 Location: porcelain throne
|
|
|
|
no such thing as a REXX panel.
and why would you want to do that?
ispf does not work that way. |
|
Back to top |
|
|
PeterHolland
Global Moderator
Joined: 27 Oct 2009 Posts: 2481 Location: Netherlands, Amstelveen
|
|
|
|
There exists a rexx/cics panel facility in Rexx for CICS Transaction Server.
In Netview there is also the possibilty to display panels/pop ups etc. |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
Back to top |
|
|
vasantdipali
New User
Joined: 06 Dec 2009 Posts: 3 Location: Mysore
|
|
|
|
Hi,
I am actually displaying a pop up (rexx panel) as shown in attachment.
actually i want the user to wait till the processing is over and so want to display a panel asking him to wait.
but when i display it its waiting for the user input (atleast to press an enter) so is there any way where in i can display this popup and continue the execution of my code? |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
|
|
did You read my previous post ?
You keep talking abour REXX Panels so You must certainly be right!
please tell us a reference where You found that the proper term
is rexx panel and not ISPF panel so that we may amend our way of thinking |
|
Back to top |
|
|
vasantdipali
New User
Joined: 06 Dec 2009 Posts: 3 Location: Mysore
|
|
|
|
Hi,
Sorry its the ISPF panel itself. but since i was using this panel with REXX code so i was using the term as Rexx panel.
Now can you help me in displaying an ISPF panel from the rexx code without awaiting the user input?.
below is the code which i used for generating the panel
)ATTR
@ TYPE(TEXT) INTENS(LOW)
$ TYPE(OUTPUT) INTENS(HIGH) COLOR (WHITE)
! TYPE(TEXT) INTENS(HIGH) COLOR (WHITE)
)BODY WINDOW(50,4)
+
+ Please wait...Processing Record...
+
)END |
|
Back to top |
|
|
enrico-sorichetti
Superior Member
Joined: 14 Mar 2007 Posts: 10889 Location: italy
|
|
|
|
why don' t You do a bit of manual reading Yourself
click on the link I gave You...
when the page opens,
read and keep clicking on the book icon with the right arrow
until You reach the page with the info needed to achieve what You want to do |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Strongly suggest that you use proper terminoloty rather than something you made up that happens to suit you.
Confusion caused by "made up" or improperly used terms is just a waste of everyone's time. . . |
|
Back to top |
|
|
siddharth singh
New User
Joined: 21 Jul 2015 Posts: 3 Location: india
|
|
|
|
can anyone tell me how to create a panel which takes input from user |
|
Back to top |
|
|
Akatsukami
Global Moderator
Joined: 03 Oct 2009 Posts: 1787 Location: Bloomington, IL
|
|
|
|
Since you revived a five-year-old thread instead of starting a new one as is proper,, I doubt if you will be aided. |
|
Back to top |
|
|
don.leahy
Active Member
Joined: 06 Jul 2010 Posts: 767 Location: Whitby, ON, Canada
|
|
|
|
If I understand your requirement correctly, you want to display a 'work in progress' panel while the Rexx continues to run? If so, then look up CONTROL DISPLAY LOCK in one of the manual references that you have been given.
I will advise however, if you expect the user to stare at a screen for more than a minute while your Rexx churns through its processing, then you will have an unhappy user. Better to submit a batch job to do the work, so that the user can do something else in the meantime. Locking up a screen is usually a bad idea. |
|
Back to top |
|
|
siddharth singh
New User
Joined: 21 Jul 2015 Posts: 3 Location: india
|
|
|
|
Akatsukami: oh yes I didn't check the date just searched the topic and read all the comments here, thought of asking here so that anyone who knows how to create a panel in rex can help me out
thanks |
|
Back to top |
|
|
|