User contributions

2003-07-07 Thread sharanbas raghapur
Dear Members, Wanted to know if users can contribute to perl (say in the form of commonly used subroutines etc.)? If answer it yes, how does it normally happen? _ Dress up your desktop! Get the best wallpapers.

Re: User contributions

2003-07-07 Thread $Bill Luebkert
sharanbas raghapur wrote: Dear Members, Wanted to know if users can contribute to perl (say in the form of commonly used subroutines etc.)? If answer it yes, how does it normally happen? Turn your code into a module (basically you should find a niche that it fits into and make sure it's not

Re: User contributions

2003-07-07 Thread Stephen Patterson
On 07 Jul 03, sharanbas raghapur ([EMAIL PROTECTED]) wrote: Dear Members, Wanted to know if users can contribute to perl (say in the form of commonly used subroutines etc.)? If answer it yes, how does it normally happen? Yes, thats where all the stuff in CPAN comes from. Read perlmodlib,

Re: User contributions

2003-07-07 Thread Jenda Krynicky
From: Stephen Patterson [EMAIL PROTECTED] On 07 Jul 03, sharanbas raghapur ([EMAIL PROTECTED]) wrote: Dear Members, Wanted to know if users can contribute to perl (say in the form of commonly used subroutines etc.)? If answer it yes, how does it normally happen? Yes, thats where all

example of table widget in perl/Tk

2003-07-07 Thread Grace Huang
Hi Does anyone have an example of table widget in perl/Tk? Grace -- ___ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Destroy widget

2003-07-07 Thread Wayne Simmons
You need to verify that the actual widget exists. there may be a situation where the graph exists but the widget doesn't. ie: sub destroy {     my $r_graph = shift; #destroy only if widget exists $r_graph-{canvas}-destroy() if (defined($r_graph-{canvas}) ); undef $r_graph-{canvas};    

RE: Destroy widget

2003-07-07 Thread Wayne Simmons
-Original Message- From: Hawley, Eric [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 3:26 PM To: 'Wayne Simmons'; 'Shuo Wang'; [EMAIL PROTECTED] Subject: RE: Destroy widget -Original Message- From: Shuo Wang [mailto:[EMAIL PROTECTED] Sent: Friday, July 04,

RE: Destroy widget

2003-07-07 Thread Hawley, Eric
-Original Message- From: Shuo Wang [mailto:[EMAIL PROTECTED] Sent: Friday, July 04, 2003 11:21 AM To: [EMAIL PROTECTED] Subject: Destroy widget Hi, guys, I am wondering anybody can help me with this. In my perl code, I destroyed a canvas widget. The canvas can be destroyed,

Net::SMTP Config.pm

2003-07-07 Thread murali
Hi Perl Gurus, I am ClearPrompt NET Smtp modules. First of all inside the Clearprompt.pm, it says the following It assumes Net::SMTP Config.pm is set up right. I have down loaded this NET::Smtp module an installed it using PPM. How can I configure this? Can I edit the Config.pm file? Or do

Re: Net::SMTP Config.pm

2003-07-07 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: Hi Perl Gurus, I am ClearPrompt NET Smtp modules. First of all inside the Clearprompt.pm, it says the following It assumes Net::SMTP Config.pm is set up right. I have down loaded this NET::Smtp module an installed it using PPM. How can I configure this?