http://qs321.pair.com?node_id=1221099


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

The post you pointed at has to to with packaging your own Perl script into an executable and hide the console.

Hi

Thats the top of the post, the replies section on the other hand ;)

Replies are listed 'Best First'.
Re^4: pp hide gui system call
by IB2017 (Pilgrim) on Aug 26, 2018 at 07:46 UTC

    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.

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

      Hi

      Why stop reading before the answer?

      Here you go

      BEGIN { Win32::SetChildShowWindow( 0 ) if defined &Win32::SetChildShowWind +ow; }

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