Re: Looking for Perl Programmer

2003-03-12 Thread David Kaufman
Paul Flint <[EMAIL PROTECTED]> wrote... > Does anyone know of a good place to find Perl programmers for a paid > project? It's only a one-off job for an online membership information > management system using Japanese and English. I can handle the > Japanese parts, I > need someone for the design

Looking for Perl Programmer

2003-03-12 Thread Paul Flint
Does anyone know of a good place to find Perl programmers for a paid project? It's only a one-off job for an online membership information management system using Japanese and English. I can handle the Japanese parts, I need someone for the design and coding. Please send any responses to me pers

Re: File::Find

2003-03-12 Thread Sisyphus
- Original Message - From: "Eric Whitcombe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 13, 2003 12:16 PM Subject: File::Find I am new to Perl as well as ActivePerl. I am trying to run a perl script using ActivePerl on Windows 2000. It invokes find(). I get this err

Re: HTTP-Request-Common not working

2003-03-12 Thread Sisyphus
- Original Message - From: "Steve" <[EMAIL PROTECTED]> use HTTP::Request::Common; $ua = LWP::UserAgent->new; $ua->request(GET 'http://www.cnn.com/'); When I run this I get: Can't locate object method "new" via package "LWP::UserAgent" (perhaps you forgot to load "LWP::UserAgent"?) at te

HTTP-Request-Common not working

2003-03-12 Thread Steve
I'm having a problem getting HTTP-Request-Common to work, so I made a test file with the code right out of the docs (well, different URL):   use HTTP::Request::Common;$ua = LWP::UserAgent->new;$ua->request(GET 'http://www.cnn.com/');   When I run this I get:  Can't locate object method "new

File::Find

2003-03-12 Thread Eric Whitcombe
I am new to Perl as well as ActivePerl. I am trying to run a perl script using ActivePerl on Windows 2000. It invokes find(). I get this error: The stat preceding -l _ wasn't an lstat at C:/Program Files/Perl/lib/File/Find.pm line 509. What's the deal? Is there a Win32 equivalent in ActivePerl

Re: Win32::Iproc cannot call method "call"

2003-03-12 Thread Sisyphus
- Original Message - From: "Heidi Ng" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 12, 2003 4:00 PM Subject: Win32::Iproc cannot call method "call" > Hi, > > I am a newbie at Perl (currently using v5.8.0) and I am trying to use > the Win32::IProc module but have fai

processing windows input with a perl program

2003-03-12 Thread Samir Gupta
Hello, I am trying to write a perl program that allows me to mimic the functionality of some "macro" programs I have seen (I think these are usually written in VB). For example, I would like to be able to type ".address" into any program I am currently working in and have it automatically replace

Re: PerlSvc

2003-03-12 Thread Jan Dubois
On Wed, 12 Mar 2003 13:35:33 -0500, John Deighan <[EMAIL PROTECTED]> wrote: >I have a service, that I've created with PerlSvc. Occasionally, it doesn't >start up correctly after a reboot, and I suspect that it's because it >accesses a database, and the database server may not have started >comp

Re: PerlSvc

2003-03-12 Thread Cameron Dorey
John Deighan wrote: I have a service, that I've created with PerlSvc. Occasionally, it doesn't start up correctly after a reboot, and I suspect that it's because it accesses a database, and the database server may not have started completely when my service is started. Under Windows, one servic

RE: PerlSvc

2003-03-12 Thread Ken Cornetet
How about an alternate method? Install Autoexnt from the NT resource kit. Set your service to start manually. Create an Autoexnt.bat that waits until the database service is started before doing a "net start YourServicehere". -Original Message- From: John Deighan [mailto:[EMAIL PROTECT

PerlSvc

2003-03-12 Thread John Deighan
I have a service, that I've created with PerlSvc. Occasionally, it doesn't start up correctly after a reboot, and I suspect that it's because it accesses a database, and the database server may not have started completely when my service is started. Under Windows, one service can be "dependent"

RE: Read a field from another windows application

2003-03-12 Thread Ismail Mutlu
Thank you all for your replies. I ended up using Win32::SetupSup, it enumerates faster that CtrlGui.It also has regex support while waiting for the windows. Thanks. Iso -Original Message- From: Ismail Mutlu Sent: Tuesday, March 11, 2003 4:33 PM To: Krummel, James C - PGGC-6; [EMAIL PROT

RE: puzzle: passing command line args to wperl

2003-03-12 Thread csaba . raduly
On 12/03/2003 14:44:30 perl-win32-users-admin wrote: >This must be the problem. I had associated a file extension of .wpl to >wperl and was executing "foo.wpl bar" but was seeing no arguments. > Open an Explorer window and go to View/Options (on NT4) or Options/File Types on Win2000 (these move

RE: puzzle: passing command line args to wperl

2003-03-12 Thread Rail, Pete
This must be the problem. I had associated a file extension of .wpl to wperl and was executing "foo.wpl bar" but was seeing no arguments. I'm still a bit annoyed that I would have to use this syntax: "wperl foo.wpl bar" rather than the more simple: "foo.wpl bar" Can you share more about the reg

Re: [OT] cygwin dll

2003-03-12 Thread $Bill Luebkert
Sisyphus wrote: Hi, Anyone got a link to a download of the Cygwin dll ? (Preferably one that works :-) Just the dll . that's all I want. Well actually it's the last bloody thing on Earth that I *want* ... but I might need it but not badly enough to go through all that setup.quagmire s

[OT] cygwin dll

2003-03-12 Thread Sisyphus
Hi, Anyone got a link to a download of the Cygwin dll ? (Preferably one that works :-) Just the dll . that's all I want. Well actually it's the last bloody thing on Earth that I *want* ... but I might need it but not badly enough to go through all that setup.quagmire stuff :-) Cheers

Re: PPM error

2003-03-12 Thread Jenda Krynicky
From: Jan Dubois <[EMAIL PROTECTED]> > On Tue, 11 Mar 2003 22:58:47 -0800, Christopher Hahn > <[EMAIL PROTECTED]> wrote: > >I was about to post a question, but it seems that I know the reason > >for my difficulties now, but am going to go ahead and post the > >problem. > > > >Then I added Jenda's a

Re: puzzle: passing command line args to wperl

2003-03-12 Thread csaba . raduly
On 11/03/2003 23:23:46 perl-win32-users-admin wrote: [snip] > >However I have discovered that I cannot pass command line arguments to the >wperl script and this is very inconvenient. > [snip] > >wperl fails to see the command line if I use getopts() or if I just operate >directly against the ARGV

Re: environment variable issues

2003-03-12 Thread csaba . raduly
On 11/03/2003 19:35:11 perl-win32-users-admin wrote: >I am having problems retrieving some of the environment variables using cgi.pm >here is the code that I am trying to use, what the heck is wrong > >Code >declarations: use strict; # just in case you forgot :-) >use CGI qw/:ALL/; >$cgi = ne

Re: PPM error

2003-03-12 Thread Jan Dubois
On Tue, 11 Mar 2003 22:58:47 -0800, Christopher Hahn <[EMAIL PROTECTED]> wrote: >Hello all, Hi there! >I was about to post a question, but it seems that I know the reason >for my difficulties now, but am going to go ahead and post the problem. > >I installed ActivePerl 5.8 on a clean box and th

SV: How to render particular area of html page on printer??

2003-03-12 Thread "Nordström, Jonas"
You can use css/dynamic html for this. Example: @media print { div.noprint {display: none;} } this is printed This is NOT printed I don't know about the support for this in all browsers, but it works well for ie. Jonas Nord