in reply to Re^3: pp hide gui system call
in thread pp hide gui system call

Yes, you were right! As a temporary solution I reverted to use one of the suggestions in the replies (using Win32::Exe to modify the third party executables. It works fine, however I would be more at easy if I could replicate what PerlApp did: suppress all consoles even for third party exe launched by the application created by PerlApp.

Replies are listed 'Best First'.
Re^5: pp hide gui system call
by beech (Parson) on Aug 27, 2018 at 06:15 UTC

    Yes, you were right!... however ...

    Hi

    Why stop reading before the answer?

    Here you go

    BEGIN { Win32::SetChildShowWindow( 0 ) if defined &Win32::SetChildShowWind +ow; }
Re^5: pp hide gui system call
by marto (Cardinal) on Aug 26, 2018 at 08:41 UTC

    Maybe you could update the relevant documentation, or provide a patch for the functionality you want.