RE: A newish follow-up question about passing control

2002-03-25 Thread Trevor Joerges
Title: RE: A newish follow-up question about passing control The other option would be to modify your system command to redirect all stdout and stderr to nul by adding a nul and 2nul at the end of your command. The problem here is really that web servers capture all STDOUT and STDERR and

RE: array slice

2002-03-25 Thread Rubinow, Larry
Peter Eisengrein wrote The following: ### snip $subset = join(,,@ARGV); print subset=$subset\n; @array=(1..10); print @array[$subset]; ### /snip gives the expected output if you pass a single number to @ARGV from the command line. For example, 'test.pl 3' will give an output of

RE: array slice

2002-03-25 Thread Bullock, Howard A.
Or: print join ( , map {@array[$_]} @ARGV); -Original Message- From: Peter Eisengrein [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 2:52 PM To: Perl-Win32-Users Mailing List (E-mail) Subject: array slice The following: ### snip $subset = join(,,@ARGV); print

RE: array slice

2002-03-25 Thread Bullock, Howard A.
Only valid for test.pl 2 3 4 and not for test.pl 3..5 etc. Or: print join ( , map {@array[$_]} @ARGV); ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Mail::Sender - authentication + design questions

2002-03-25 Thread Jenda Krynicky
I would like to get some input from the general public on a few issues with Mail::Sender. 1) Will anyone mind if the SendX() methods will return the Mail::Sender object instead of the 1 they used to? This would allow chaining the method calls like this : eval { (new

RE: Perl Compiler

2002-03-25 Thread Krummel, James C - PGGC-6
Mike, Jenda Krynicky has a script on his site that changes PE of an executable from console to GUI. This should make your file do what you want with a little modification. James http://jenda.krynicky.cz/perl/makeGUIperl.pl.txt -Original Message- From: Mike DeWolfe [mailto:[EMAIL

Re: Perl/Tk fileevent

2002-03-25 Thread Jack
- Original Message - From: Carter A. Thompson [EMAIL PROTECTED] I'm having some difficultly understanding how to use fileevent. I have Perl/TK script as a wrapper for a source control system command and I'd like to catch the output of the command in a text window. I've read that

Re: Perl/Tk fileevent

2002-03-25 Thread Carter A. Thompson
Thanks, Jack. I have the Mastering Perl/Tk book and I've even tried the examples. It's just not working. :-( I sincerely appreciate your input. I'll look into some other options. Cheers, Carter. Jack wrote: - Original Message - From: Carter A. Thompson [EMAIL PROTECTED] I'm

RE: array slice

2002-03-25 Thread Carl Jolley
On Mon, 25 Mar 2002, Rubinow, Larry wrote: Peter Eisengrein wrote The following: ### snip $subset = join(,,@ARGV); print subset=$subset\n; @array=(1..10); print @array[$subset]; ### /snip gives the expected output if you pass a single number to @ARGV from the command

Protecting fair-use rights in the digital world

2002-03-25 Thread John Draper
from: http://www.digitalconsumer.org/ Protecting fair-use rights in the digital world Click here to help us stop the new Hollings Bill. We'll fax your letter to Congress. Have you ever made a tape of your favorite songs to enjoy in your car stereo? Have you ever

Getting Active Directory objectsid value using Net::LDAP - Help!

2002-03-25 Thread Ray Cordoni
I am using Net::LDAP to get user information from our Active Directory. I am testing this with ActiveState perl but will be porting to run on a Unix system. As far as I have found, Net::LDAP is the only way I can get information out of Active Directory from a Unix system. The problem I have