RE: Using Outlook in Win32::OLE

2003-06-18 Thread Herold Heiko
Try using windows style slashes - 'c:\audit\IN\mail_scripts\auto_mail.pl' Heiko -- -- PREVINET S.p.A. www.previnet.it -- Heiko Herold [EMAIL PROTECTED] -- +39-041-5907073 ph -- +39-041-5907472 fax > -Original Message- > From: Bautista, Rodel D.(Digitel-GSM) > [mailto:[EMAIL PROTECTED] >

RE: Configuring Power Management Settings

2003-06-18 Thread Messenger, Mark
Title: RE: Configuring Power Management Settings #include ; This is (usually) a two-part process: 1) Disable any BIOS power management via your CMOS setup interface. 2) Disable power management in Windoze. Try Setting the following: HKEY_USERS\\userssidgoeshere\\Control Panel\\PowerCf

ANNOUNCE: New beta of Win32::Daemon

2003-06-18 Thread Dave Roth
Title: ANNOUNCE: New beta of Win32::Daemon There is a new beta of the Win32::Daemon extension. New is the ability to: * Modify and Query Security ACL settings for a service (who is allowed to start/pause/continue/stop/etc) * CALLBACKS!!! Yes we now support callbacks. Pretty cool! Mind you

LZW, C and Perl

2003-06-18 Thread Hirosi Taguti
Hello, They say the patent on LZW will be invalidated on 2003/06/20. I like to see the comparison of C language & Perl. Anyone knows some "lzw.c" & "lzw.pl"? Lempel Ziv Welch. Who is the last person? -- Hirosi Taguti [EMAIL PROTECTED] ___ Perl-Win32-Us

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
Sir, I've tried the following script below and here is the result. a) the "mapis32.exe" process is started by the script so I am automatically authenticated (w/o outlook running) and send the mail successfully. b) when I tried attaching a file, the mail was not sent and an undeliverable message ap

Re: Reverse of Chomp...

2003-06-18 Thread Jonathan D Johnston
On Wed, 18 Jun 2003 15:18:31 +0100 Beckett Richard-qswi266, <[EMAIL PROTECTED]> wrote: > Surely the nicest way is to set the output array seperator to \n? > > i.e. > > $\ = "\n"; > print @array; Hi Richard, I'm afraid your idea won't help George much. If you reread his email, you will see that he

RE: Win32::OLE, excel file not found

2003-06-18 Thread Allegakoen, Justin Devanandan
--8<--- If you'll notice, the code provided was wrapped in <% %> which indicates SERVER side execution. --8<--- Feel the need for a little defence on my part ;) There's no point in trying to execute server side code in the faint hope that it will open your local file. I've

Is SOAP::Lite with Perl for ISAPI Possible?

2003-06-18 Thread Eric Amick
I've been trying to run a SOAP server with SOAP::Lite 0.55 under Perl 5.8.0 using Perl for ISAPI. The necessary extension mappings exist, but the debug trace always says something about no output being produced, and it apparently sends back a CGI header with a content type of text/html, which the

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
Sir, in one of my googling sessions, I run into Win32::MAPI module. Will this help me in my automailer script? Where can I find and download the module? again, thank you very much. Rodel D. Bautista > -Original Message- > From: Bautista, Rodel D.(Digitel-GSM) [SMTP:[EMAIL PROTECTED] > Se

RE: Using Outlook in Win32::OLE

2003-06-18 Thread Bautista, Rodel D.\(Digitel-GSM\)
Sir, again thank you very much for your help (and for everyone who shared some of their time replying to my queries and assisting in my problem). I'll try to look at your suggestion and advice. Actually, I have already a script that handles the authentication part but the problem now is that when

Re: Memory leaks

2003-06-18 Thread Andrew Mueller
Thanks for your response Thomas. Due to my lack of experience with PERL code, I'm not very sure what that code snippit you sent means. I'm going to attach a couple of lines of the code that I've been working with if it's not too much trouble, maybe you could suggest how it could be improved up

Memory leaks (TK binding and references)

2003-06-18 Thread Andrew Mueller
Thanks for your response Thomas. Due to my lack of experience with PERL code, I'm not very sure what that code snippit you sent means. I'm going to attach a couple of lines of the code that I've been working with if it's not too much trouble, maybe you could suggest how it could be improved up

Re: Trouble counting chars

2003-06-18 Thread Carl Jolley
On Tue, 17 Jun 2003 [EMAIL PROTECTED] wrote: > Hi! > > i've been writing a sub in order to validate a list of permissions. > Each permission must appear once at most. Code and result are below. > > i run a simple test against the group of permission but i can't > figure out why it stops working wh

RE: Delayed writing using file handles???

2003-06-18 Thread Bradley K. Embree
Title: Message one of MJD's writeups will help you see what is going on here:   http://perl.plover.com/FAQs/Buffering.html   or here is the short answer:   my $old_file_handle = select LOGFILE; $| = 1; select $old_file_handle; -Original Message-From: [EMAIL PROTECTED] [mail

Delayed writing using file handles???

2003-06-18 Thread Maraglia, Dominicx
Title: Message I have some code which is used in stress testing iSCSI network I/O.  I am logging the results, but often the writes to the logfile are greatly delayed.  For example, if my ltest has been running for an hour, the logfile might only contain 45 minutes of data.  The problem is mo