RE: Visual Perl in Visual Studio

2000-05-30 Thread Bellenger, Bruno (Paris)
On Sun, 28 May 2000 20:59:53 -0400, Matthew Persico [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: "Paul Rogers [CE]" wrote: Something I never dreamed would happen...

RE: FOOTNOTE question

2000-05-26 Thread Bellenger, Bruno (Paris)
This sounds more like a question for the Perl-Win32-Web list. _ Bruno Bellenger Sr. Network/Systems Administrator -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 25, 2000

RE: character string length

2000-05-25 Thread Bellenger, Bruno (Paris)
-Original Message- From: Peter Eisengrein [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, May 24, 2000 18:41 To:'Bellenger, Bruno (Paris)'; '[EMAIL PROTECTED]' Subject: RE: character string length Thanks. I'm pretty sure

RE: How to modify the Screen Saver setting with PERL?

2000-05-24 Thread Bellenger, Bruno (Paris)
Everything you need to change the screen saver's settings can be found in HKEY_CURRENT_USER\Control Panel\Desktop But that's only for your interactive session, of course. Changing other users (including remote) settings is a bit more tricky as the registry path will include the user's SID,

RE: STDIN and STDOUT

2000-05-23 Thread Bellenger, Bruno (Paris)
I'm not sure I fully understand why you care about capturing the output if you don't really need to analyze what's coming back from the command. But you can always try some of the following. In NT, you can usually send data to a command line in two ways, which, to say the truth, may not work

RE: system();

2000-05-23 Thread Bellenger, Bruno (Paris)
foreach $get_line (@Gettag_Return) { print "$get_line"; } * Nothing happen I have used all those techniques in the past and I know they should work! Am I missing something? Thanks for any advice.

RE: system();

2000-05-22 Thread Bellenger, Bruno (Paris)
"Hogue, Jon" wrote: I want to run a dos command and play with the output of the command. For example, If I do system("foo.exe"), how do I get the ouput of foo.exe. (not the exit status). Open it in a pipe: #open(FOO, "foo.exe|");