Re: problem with djgpp/perl

2002-07-26 Thread Ron Grabowski
> 1. I downloaded perl542b.zip and csdpmi5b.zip "This is a MSDOS/DJGPP port of perl 5.004_02.". The file dates to 1997. There have been many major revisions to Perl in the last 5+ years. > Can't locate Socket.pm in @INC (@INC contains: C:\PERL\LIB\PERL5 Socket.pm has been a core ( i.e. it comes

Deep recursion on subroutine "Net::SNMP::_send_pdu" at C:/Perl/site/lib/Net/SNMP

2002-07-26 Thread Fernando Madruga
When using Net::SNMP in the script indicated below, I get these errors: Deep recursion on subroutine "Net::SNMP::_send_pdu" at C:/Perl/site/lib/Net/SNMP.pm line 2189. Deep recursion on subroutine "Net::SNMP::snmp_dispatcher" at C:/Perl/site/lib/Net/SNMP.pm line 1731. Deep recursion on subroutine

RE: Deep recursion on subroutine "Net::SNMP::_send_pdu" at C:/Perl/si te/lib/Net/SNMP

2002-07-26 Thread Stacy Doss
Fernando The is a 100 count limit on recursion within perl (to avoid possible infinite loops) To filter out just that warning (but let other problems through) perl < 5.6 local $SIG{__WARN__} = sub { $_[0] =~ /^Deep recursion/ or warn $_[0] }; perl >= 5.6: no warnings 'recursi

"Invalid class string" error using SetSecurityDescriptor...

2002-07-26 Thread michael . berry
I am trying to write a program to add an ace to the acl for several thousand users in AD. I have been successful at creating users but I am stuck at the asterisk"ed" line near the end of the provided code. I have the adssecurity.dll file registered. I have been able, with some other code, to re

Help with Excel "Page Setup" and Perl

2002-07-26 Thread benjamin . thomas
Hi there, I am using ActivePerl 5.6.1 build 630, and I intend to format and print worksheets automatically. I derived from a macro for this something like: use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel'; use Win32::OLE::Variant; $Win32::OLE::Warn = 3;

RE: Perl - Mailing Related doubt [ Mail Merge ]

2002-07-26 Thread Dutrieux Yves
This little script will help you ;-) Yves -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 8:18 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Perl - Mailing Related doubt [ Mail Merge ] Dear friends, I would like