question on Graph module in CPAN

2005-11-07 Thread nikhil anand
Hi Guys, I have the following piece of code. use strict; use vars; use Set::Scalar; use Graph::Undirected; ##Constructor my $g = Graph::Undirected->new(); my $A = Set::Scalar->new(); my $B = Set::Scalar->new(); my $edge; ##

Re: Can perl manipulate the gmail?

2005-11-07 Thread A B
May be without any scripts? May be some module (http://search.cpan.org/search?query=gmail&mode=all)? Or just go to Gmail account, then Setting and Forwarding. --Alex --- gao perlone <[EMAIL PROTECTED]> wrote: > I use gmail and I subscribe a Mail-list which send me a word every > day.So I feel

Re: Can perl manipulate the gmail?

2005-11-07 Thread Scott Leighton
On Monday 07 November 2005 6:04 pm, gao perlone wrote: > I use gmail and I subscribe a Mail-list which send me a word every > day.So I feel like using Perl to help me get all the mail from my > gmail-box.How can I do it? > and are there any modules can help me? > Look into Mail::POP3Client S

Re: Perl GUI creation

2005-11-07 Thread Sham Prasad
Hi all,How to develop a GUI using perl TK? can anyone send me asimple example or explain me how to do it? I am doing it for the firsttime. i heard perl TK is very powerful in doing this. ThanksSham Prasad On 10/31/05, Scott Leighton <[EMAIL PROTECTED]> wrote:> On Sunday 30 October 2005 8

Re: Can perl manipulate the gmail?

2005-11-07 Thread $Bill Luebkert
gao perlone wrote: > I use gmail and I subscribe a Mail-list which send me a word every > day.So I feel like using Perl to help me get all the mail from my > gmail-box.How can I do it? > and are there any modules can help me? Is there any reason you can't just have your regular email client retri

Can perl manipulate the gmail?

2005-11-07 Thread gao perlone
I use gmail and I subscribe a Mail-list which send me a word every day.So I feel like using Perl to help me get all the mail from my gmail-box.How can I do it? and are there any modules can help me? ___ ActivePerl mailing list ActivePerl@listserv.ActiveS

Help with Excel

2005-11-07 Thread David Sawyer
I have a perl program that is supposed to query data from a Oracle database and then populate the data to an Excel spreadsheet. The code runs great on my UNIX server but I get the following error when I try and run it on my local XP PC Can't call method "AddCell" on unblessed reference a

Re: RegExp match '\w'

2005-11-07 Thread Williamawalters
In a message dated 11/7/2005 7:38:36 P.M. Eastern Standard Time, [EMAIL PROTECTED] writes:   > I use this regexp ^\s*insert:\s*([\s\w\,\.\-\(\)\']+); to search for the > insert command in a text file. $1 has all text from the ':' to the ';' that > have a space (\w) alphacharacter (\w) and th

RegExp match '\w'

2005-11-07 Thread Am�rico Albuquerque
Hi I use this regexp ^\s*insert:\s*([\s\w\,\.\-\(\)\']+); to search for the insert command in a text file. $1 has all text from the ':' to the ';' that have a space (\w) alphacharacter (\w) and the characters ,.-()' It works fine if the text after the ':' doesn't have characters like ç,

Re: need help understanding part-time error "invalid switch"

2005-11-07 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: > Hi everyone. > > > this loop > *** start code *** > while($lstgd =~ m/$strt\/.+/){ > if($verb>3){ &rep("\n\n check b: \$lstgd: $lstgd \t\$verb: > $verb\t\$strt: $strt",$verb); } > if($lstgd =~ m/(.*)\/[^\/]+$/){ > my $rmv=`rmdir

need help understanding part-time error "invalid switch"

2005-11-07 Thread JPerlmutter
Hi everyone. this loop *** start code *** while($lstgd =~ m/$strt\/.+/){ if($verb>3){ &rep("\n\n check b: \$lstgd: $lstgd \t\$verb: $verb\t\$strt: $strt",$verb); } if($lstgd =~ m/(.*)\/[^\/]+$/){ my $rmv=`rmdir "$lstgd"`; if($rmv eq ''){ if($

Re: Pack command

2005-11-07 Thread Williamawalters
In a message dated 11/7/2005 1:17:44 P.M. Eastern Standard Time, [EMAIL PROTECTED] writes:   > I got the following problem using Active Perl:>  > I need to read a file that is HEXA encoded. I whant to see (when do a print command)> the HEXA values, like 8D and etc...> Do you know how to ope

Re: Pack command

2005-11-07 Thread $Bill Luebkert
Caldeira Alexandre-WAC075 wrote: > > > Hi Everybody, > > I got the following problem using Active Perl: > > I need to read a file that is HEXA encoded. I whant to see (when do a > print command) the HEXA values, like 8D and etc... > Do you know how to open and manage a file in hexa? Do you

RE: Pack command

2005-11-07 Thread Caldeira Alexandre-WAC075
  Hi Everybody,   I got the following problem using Active Perl:   I need to read a file that is HEXA encoded. I whant to see (when do a print command) the HEXA values, like 8D and etc... Do you know how to open and manage a file in hexa?   All the time that I tried Perl t