ncurses or curses

2002-09-08 Thread Blue Trance
Hi list,   I am wondering if anyone has done a port of curses or ncurses to ActivePerl for Win32.   I have used curses quite extensivly in scripts I have developed under Linux and need to locate a curses or ncurses module so the scripts will run under Win32 as well.   The Curses 1.60 found in

RE: make perl script 'hidden'

2002-09-08 Thread Dax T. Games
Dave Roth did a great article on this at Windows Scripting Solutions called "Hiding the DOS Box and Other Magical Tricks". http://www.win32scripting.com/Articles/Index.cfm?ArticleID=16299 Download the source to get the code that works on both Winnt 4 and Win2k. Dax *** REPLY SEPARATO

RE: make perl script 'hidden'

2002-09-08 Thread T&C Winquist
Thanks! That did it! Now I just need to register perl2exe so it doesn't pop up the little 'ok' window after execution. There goes another $50! :o) -Original Message- From: Mike Brentlinger [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 08, 2002 11:20 AM To: [EMAIL PROTECTED] Subje

RE: make perl script 'hidden'

2002-09-08 Thread T&C Winquist
The thing of it is...is that I compiled my perl script with perl2exe, so I'm not actually invoking the perl interpreter. It's an exe written in perl, so I have to come up with something in the script to cause the command prompt NOT to pop up. -Original Message- From: Edgington, Jeff [mai

RE: make perl script 'hidden'

2002-09-08 Thread Edgington, Jeff
hrm... I _think_ that instead of issuing 'perl ' you would invoke 'wperl ' jeff e. -Original Message- From: T&C Winquist [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 08, 2002 9:17 AM To: [EMAIL PROTECTED] Subject: make perl script 'hidden' I have a scheduled task on my win95 a

make perl script 'hidden'

2002-09-08 Thread T&C Winquist
I have a scheduled task on my win95 and win2k machines that executes a perl script every 5 minutes. This means that every 5 minutes a command prompt pops up on the screen and then goes away when the script execution is complete. I don't want to rewrite the whole script, but is there a way to mak