fanticla has asked for the wisdom of the Perl Monks concerning the following question:

Dear monks,

I compiled a TK application for Windows. From this application I start an external exe file using "system", namely to convert a pdf file into text. It works perfectly, but every time the dos shell is prompted (for the time the pdt2text converter works), and as this is a batch operation, the thing is very annoying. There is a way to hide the dos shell?

while ($pdf) { system ("pdftotext.exe my_pdf.pdf"); }

Thanks, cla

Replies are listed 'Best First'.
Re: Dos system hide shell
by marto (Cardinal) on Aug 07, 2010 at 08:36 UTC
      Thank you, my global search was not that good!
Re: Dos system hide shell
by biohisham (Priest) on Aug 07, 2010 at 09:41 UTC