RE: W32ssh.

2004-09-14 Thread Jutu Subramanian, Srinivasan (Cognizant)
Title: RE: W32ssh. Hi, I am getting this problem for the code in code.pl and error in the err.txt. The error clearly says Can't locate Math/GMP.pm in @INC (@INC contains: C:\Program Files\ActiveState Komodo 2.5 C:/Perl/lib C:/Perl/site/lib .) But, If I try to install Math/GMP.pm, I need

GMP library

2004-09-14 Thread Jutu Subramanian, Srinivasan (Cognizant)
Title: GMP library Hi, Anybody know how to install the GMP library in windows box. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information.If you are not the intended recipient, please

Re: GMP library

2004-09-14 Thread Sisyphus
Jutu Subramanian, Srinivasan (Cognizant) wrote: Hi, Anybody know how to install the GMP library in windows box. Probably simplest for you to run: ppm install http://theoryx5.uwinnipeg.ca/ppms/Math-GMP.ppd That will install a Math::GMP that has been built against a static GMP library - so you

Re: Win32::Shell::Execute Alternative

2004-09-14 Thread Huub Peters
Huub Peters wrote: I've written a gui application with wxPerl and I want to be able to execute a (known) file from within the application (it's a list of files to be attached to an e-mail) So for example, when I attached a xls file (Excel) or an url I want to be able to view it. Up

Strings ?! ( reloaded )

2004-09-14 Thread Nicolae.Popovici
Title: Strings ?! ( reloaded ) Hello guys, Now I am testing the following piece of code : sub TestSubstr { $_ = EMail : [EMAIL PROTECTED]; $testFor = EMail; if ( /^(\s*)($testFor\s{1}:)/) { print + is $+[0] \n; # until now I did like the following two lines to get the

RE: Strings ?! ( reloaded )

2004-09-14 Thread Gregory S. Williamson
You might try putting a \ before the @ ... e.g. $_ = EMail : [EMAIL PROTECTED]; HTH, Greg Williamson DBA GlobeXplorer LLC -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tue 9/14/2004 2:37 AM To: [EMAIL PROTECTED] Cc: Subject:Strings ?!

Re: Strings ?! ( reloaded )

2004-09-14 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: Hello guys, Now I am testing the following piece of code : sub TestSubstr { $_ = EMail : [EMAIL PROTECTED]; $testFor = EMail; if ( /^(\s*)($testFor\s{1}:)/) { print + is $+[0] \n; # until now I did