RE: Technical Arguments for using Perl in a web environment...

2003-01-23 Thread Story, Lenny
Maybe im an idiot, but why are people complaining about CGI and PERL when CGI is just an interface mechanism ? Does mod_perl execute perl code embedded in webpages, like php, etc ? If so, whats the issue ? I'll take a first guess and say its just buzzword bingo.. *shrug* Thanks, -Lenny

#defines ? or Constant Data in perl ?

2002-09-23 Thread Story, Lenny
Greetings, Is there some such way to define a constant, or #define style variable in perl ? I typically have the need to define data which is just to eliminate the need for magic numbers etc. thus far i have just defined variables such as : my $WELCOME_MSG = Hello!; print $WELCOME_MSG;

RE: NET::Telnet

2002-09-17 Thread Story, Lenny
Greetings, I too had alot of trouble getting Net::Telnet to work properly, it seemed to continuously stop for no apparent reason, with very poor performance. As well as not being able to make it non-block on win32. I had to eventually write a direct TCP client to get a proper level of

RE: Changing the Windows Background NT 4.0

2002-08-01 Thread Story, Lenny
- Actually im running it manually at the moment... but i want to be running it automatically. - I have admin privs on this machine.. - The registry is not getting updated. My guess is that the SystemInfo call is failing... -Lenny -Original Message- From: Fernando Madruga

RE: Changing the Windows Background NT 4.0

2002-08-01 Thread Story, Lenny
It seems that If the image type is .BMP it works fine. But if its a .JPG it doesn't. Joy. -Lenny -Original Message- From: Story, Lenny [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 1:54 PM To: Fernando Madruga; [EMAIL PROTECTED] Subject: RE: Changing the Windows Background

RE: Changing the Windows Background NT 4.0

2002-08-01 Thread Story, Lenny
Actually, Active Desktop is on. I can set it manually, to a JPG just not programatically. -Lenny -Original Message- From: Adam Frielink [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 2:36 PM To: Story, Lenny; [EMAIL PROTECTED] Subject: RE: Changing the Windows Background NT

Changing the Windows Background NT 4.0

2002-08-01 Thread Story, Lenny
Greetings, Well, its working, but i had to use Image::Magick to convert the .jpg to a .bmp. Thanks everyone! -Lenny [EMAIL PROTECTED] ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe:

Win32 and Non-Blocking Sockets.

2002-05-14 Thread Story, Lenny
Greetings, Has anyone here figured out how to get perl to set the windows sockets to non-blocking ? I know that WinSock supports it...as i have done extensive sockets code using C++. I just cannot find the equivalent methods in perl. Setting the socket to NON-Blockin in C/C++ i would do :