×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Let me see if I understand... you want your green-screen software to
wait until Notepad has been closed before continuing? And that works if
you invoke notepad directly, but not if you run the 'start' command?
Presumably, it still runs notepad (even with the 'start') it just
doesn't wait until it's finished, right?
The reason is pretty simple. Your 5250 emulator creates a new process,
to run a command, and waits for that process to finish. When you use
the 'start' command, the 5250 emulator creates a new process and runs
the 'start' command in that process. The 'start' command will, in turn,
create yet another new process to run notepad in. The problem is, the
5250 emulator is waiting for the 'start' process, not the 'notepad' process.
Whereas if you invoke notepad directly, it should wait for the notepad
process.
Why would you ever want to use 'start' in conjunction with a program
like 'notepad'?? That doesn't make sense to me.
Helge Bichel wrote:
but can somebody explain why:
STRPCCMD PCCMD('notepad.exe') works
STRPCCMD PCCMD('notepad') works
STRPCCMD PCCMD('start notepad.exe') doesn't work
STRPCCMD PCCMD('start notepad') doesn't work
doesn't work: means just returns to the green screen regardless of PAUSE(*YES/*NO)
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.