View previous topic :: View next topic |
Author |
Message |
moyeenkhan Beginner
Joined: 04 Dec 2002 Posts: 64 Topics: 21
|
Posted: Tue Apr 21, 2009 3:17 pm Post subject: ISPF/EDIT - Continious display using zedlmsg |
|
|
I am processing a file and would like to display a long message in a pop up window for every 100 records processed.
I have the following code in a seperate routine which I call whenever I reach 100 records.
zedsmsg=''
zedlmsg= I 'records processed'
Address ISPEXEC 'SETMSG MSG(ISRZ000)'
This is not working. Any ideas on how to make it work.
Thanks |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Apr 21, 2009 3:47 pm Post subject: |
|
|
better to use your own popup panel with addpop, control display lock, display and rempop. I think there are also ways you use a message by using DISPLAY wiithout a panel name, but that doesn't work well from edit macros and probably table displays. _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
|
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Tue Apr 21, 2009 4:04 pm Post subject: |
|
|
is not the long message displayed when you do a PF1
after the short message is displayed (which has be set to a 0 length string?
suggest you have a short message and a long message. _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Apr 21, 2009 7:00 pm Post subject: |
|
|
if there is no short text, the long is shown. A useful trick for showing more than 1 line's worth of info in a macro, btw. _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
|
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Wed Apr 22, 2009 3:03 am Post subject: |
|
|
a trick learned, thx _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
|
|
|