unable to install DBD::Oracle

2004-12-28 Thread liooil
Hello World, Hope this topic is not [EMAIL PROTECTED] relevant. My Apologies if it's the case... Well, i'm trying to port a perl script from solaris to ActiveSate platform. My script has to connect to three Oracle Servers (2x8, 1x9i). My problem is i'm unable to install properly DBD::Oracle

Re: Unhandled exception while calling a DLL using Win32::API

2004-12-28 Thread Mikael Olenfalk
Thanks, using i512 instead of s512 in pack() solved this issue, however I'm not really sure this should be the case as s512 should have allocated 512 * 2 bytes and I expect the function to just write 2 bytes to this buffer. If you have any idea why this is the case, please let me know. /Mikael

Another unhandled exception question

2004-12-28 Thread Sturdevant-Contractor, Robert W
Hi List, My apologies...I'm reposting this do to a subscriber problem that I hope is corrected. I'm having some success using the Win32::API module for the first time but Perl throws an Application Error popup and aborts on the following: Here is the prototype: int CFinished( void );

Re: Another unhandled exception question

2004-12-28 Thread $Bill Luebkert
Sturdevant-Contractor, Robert W wrote: Hi List, My apologies...I'm reposting this do to a subscriber problem that I hope is corrected. I'm having some success using the Win32::API module for the first time but Perl throws an Application Error popup and aborts on the following:

FW: Perl-Win32-Users Digest, Vol 11, Issue 14

2004-12-28 Thread CHIDIPI, RAMJEE \(SBCSI\)
Folks, I need some small help. I want to run a perl script that would call a windows BAT file. How can I do that? Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 2:05 PM To:

RE: Another unhandled exception question

2004-12-28 Thread Sturdevant-Contractor, Robert W
Darn near magic ... Thanks $Bill, I went back and relooked the POD and sure enough, right _below_ the type table, there it was : V. And it works ;-) BobS -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 2:31 PM To:

Eclipse, padawalker

2004-12-28 Thread Carl Klapper
Has anyone tried setting up ActivePERL in Eclipse? I think I have it going in "run" mode, but "debug" produces: "EPIG Error ***Error displaying Local Variables Install Padawalker on your Perl system or disable displaying of local variables" Does anyone here know what "Padawalker" is

RE: Eclipse, padawalker

2004-12-28 Thread Hite, Sharon (NIH/NIEHS)
Carl, I think this may be what you need. http://search.cpan.org/~robin/PadWalker-0.10/PadWalker.pm The debug probably uses it to display the contents of the variables. Sharon From: Carl Klapper [mailto:[EMAIL PROTECTED] Has anyone tried setting up

RE: unable to install DBD::Oracle

2004-12-28 Thread Capacio, Paula J
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 2:37 AM Hope this topic is not [EMAIL PROTECTED] relevant. My Apologies if it's the case... No, the right list is the DBI-Users list http://lists.cpan.org/showlist.cgi?name=dbi-users Well, i'm trying to port a

How can I detect 'Security Alert' windows in IE using Win32::OLE?

2004-12-28 Thread Jim Guion
These windows popup when changing from a non-secure to secure connection and vice-versa, which is part of the application I am writing tests for. I need to be able to detect that the alert window opened and close it appropriately so that the application can continue. Thanks for any guidance! Jim

RE: Perl-Win32-Users Digest, Vol 11, Issue 14

2004-12-28 Thread John Serink
Use strict; Use warnings; my @jim=`bob.bat`; print(@jim); Will run bob.bat and capture all output to @jim. Note, those are back ticks, above the tab key not single quotes. :) John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of CHIDIPI, RAMJEE

RE: Perl-Win32-Users Digest, Vol 11, Issue 14

2004-12-28 Thread Ted Schuerzinger
John Serink graced perl with these words of wisdom: [14 lines snipped] Is there any reason you quoted the entire digest (600+ lines) to send us 14 lines of relevant material? (I suppose it could be worse; you could have posted with that bloated [EMAIL PROTECTED]@$ M$-HTML which would have

Re: Perl-Win32-Users Digest, Vol 11, Issue 14

2004-12-28 Thread $Bill Luebkert
John Serink wrote: Use strict; Use warnings; 'use' should not be capitalized. my @jim=`bob.bat`; print(@jim); Will run bob.bat and capture all output to @jim. Note, those are back ticks, above the tab key not single quotes. Trim your posts and don't top-post. -- ,-/- __