Antwort: RE: Perl-Win32-Users Digest, Vol 18, Issue 4

2005-07-05 Thread armin . nolte
Hi Liza, I' sending mails either with Mail::Sendmail; and a script would look like this: use Mail::Sendmail; %mail = ( To => '[EMAIL PROTECTED]', From => '[EMAIL PROTECTED]', Subject =>'What ever your subject is', Message => $output , 'X-MAILER' =>

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Sisyphus
- Original Message - From: "Chris Rogers" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 06, 2005 12:19 PM Subject: Re: Win32::GUI::Label, Bitmaps, and Resizing > UPDATE: > > The more I look at this problem, the more worried I get. I'll explain > the desired end result in a little more

Re: NET-DNS & Regex

2005-07-05 Thread $Bill Luebkert
Chris wrote: > I'm attempting to convert an ip address (80.224.159.46) info a fully > qualified domain (46.159.244.80.sbl-xbl.spamhaus.org) and then make a dns > query to determine if any records exist. I cant seem to figure our what I'm > doing wrong here. > > > use strict; > use Net::DNS; > >

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Chris Rogers
UPDATE: The more I look at this problem, the more worried I get. I'll explain the desired end result in a little more detail so you guys can tell me if I'm barking up the wrong tree. 1) I need to be able to display a large image in a smaller container and allow the user to scroll the image in t

Re: Perl-Win32-Users Digest, Vol 18, Issue 4

2005-07-05 Thread Sisyphus
- Original Message - From: "Liza Das" <[EMAIL PROTECTED]> > #!/usr/bin/perl -w > > use Net::SMTP; > > use Socket; > use Strict; Should be: use strict; > > sendmail(); > sub sendmail { > > my $smtpserver = 'jerryqa'; Is 'jerryqa' a valid mail server ? Usually the mail server is somethi

Re: Perl-Win32-Users Digest, Vol 18, Issue 4

2005-07-05 Thread $Bill Luebkert
Liza Das wrote: > Dear Perl Experts, > > I'm trying to write something that would send an email if there was an error > message. > But the below script is not working when I do a test run. > Can you please advise on what I could be doing wrong? > > > #!/usr/bin/perl -w > > use Net::SMTP; > >

Re: Notify me when upload complete.???? Net::Aim ???

2005-07-05 Thread pDale
On 7/5/05, Charles Maier <[EMAIL PROTECTED]> wrote: > Has anyone successfully used Net::Aim to send a message from Perl?? > Could you show a simple example?? Here's an example of a Bot in Perl: -- HTH, pDale ___

RE: Notify me when upload complete.???? Net::Aim ???

2005-07-05 Thread Charles Maier
Has anyone successfully used Net::Aim to send a message from Perl?? Could you show a simple example?? TIA Chuck -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Eisengrein Sent: Tuesday, July 05, 2005 2:10 PM To: 'Charles Maier'; 'Perl-Win32-Users Ma

NET-DNS & Regex

2005-07-05 Thread Chris
I'm attempting to convert an ip address (80.224.159.46) info a fully qualified domain (46.159.244.80.sbl-xbl.spamhaus.org) and then make a dns query to determine if any records exist. I cant seem to figure our what I'm doing wrong here. use strict; use Net::DNS; my($the_ip,$the_domain,$rr,$the_q

Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Chris Rogers
Is there a way to keep a label from resizing itself and the bitmap? Here's the scenario: I want to use a label that is 400x400 to hold a bitmap whose dimensions are unknown and use scroll bars to move the image around if the image is larger than the label. The need here is to be able to display v

RE: Perl-Win32-Users Digest, Vol 18, Issue 4

2005-07-05 Thread Liza Das
Dear Perl Experts, I'm trying to write something that would send an email if there was an error message. But the below script is not working when I do a test run. Can you please advise on what I could be doing wrong? #!/usr/bin/perl -w use Net::SMTP; use Socket; use Strict; sendmail(); sub se

RE: Notify me when upload complete.????

2005-07-05 Thread Peter Eisengrein
> > Yes I would like to do that!! However...Remember when a webserver > script runs... I don't think it has the rights of the > logged-in user. I > tried a few things and don't know how to get by this. > Which is why I > posed this question ;o)) > I've never used it, but Net::AIM loo