GMP library

2004-09-13 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 contac

RE: W32ssh.

2004-09-13 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

Re: installing Net::SSHW32 issue.

2004-09-13 Thread Sisyphus
Jutu Subramanian, Srinivasan (Cognizant) wrote: Hi, Thanks for your help. Pre requisites problem solved. But, After that it throws the make file problem. Can you tell me how to sort out. I have attached the cmd. I think you should run 'nmake clean' again, followed by 'perl makefile.pl', 'nmake te

Re: Incrementing the date?

2004-09-13 Thread $Bill Luebkert
Beckett Richard-qswi266 wrote: > Guys, > > I have another conundrum... > > I have a directory with a series of files, named like this: > > 251_20040525_051500.log > > Where the 251 is a device number, and the 20040525_051500 is a date and time string, > which means: > > 25th May 2004 05:15.0

RE: ole browser broke, xp sp2? - another fix

2004-09-13 Thread Hon Shi
To turn off mother-knows-best, xp sp2 ie In both HHKLM and HKCU set dword to 0 (spelling?) software/mirosoft/internet explorer main/featurecontrol/frature_localmachine_lockdown iexplore.exe = 0 ___ Do you Yahoo!? Shop for Back-to-School deals on Yah

RE: ole browser broke, xp sp2?

2004-09-13 Thread Jan Dubois
On Mon, 13 Sep 2004, Hon Shi wrote: > My perl doc OLE browser broke. I get this (see below) in the bottom > pane. Help! Thanks (maybe a new corp gpo setting?) You can fix this by renaming C:\Perl\html\OLE-Browser\Browser.dhtml to C:\Perl\html\OLE-Browser\Browser.htm and then editing

Simple threading has large handle leak (need help)

2004-09-13 Thread Ben Conrad
Hello, - perl v5.8.3/v5.8.4 built for MSWin32-x86-multi-thread - WinXP SP1 + SP2 I'm using a very simple example from the 5.8 perlthrtut and seem to be running into a memory leak of some kind. When I run: # use threads; while (1) { $thr = threads->new(\&sub

RE: Incrementing the date?

2004-09-13 Thread Peter Eisengrein
Title: RE: Incrementing the date? There may be a cleaner way, but I would use Time::Local and convert the date to epoch time, add one day (86400 seconds), then convert it back using localtime(); > > I can count from 0 to 23, and if the hour is missing insert > it along with zero data, but h

Antwort: Perl CD Bookshelf - Ver 3 (not latest)

2004-09-13 Thread Manfred . Beilfuss
Hi cameron If you're still searching, do take a look at www.amazon.de! They have a external supplier who askes less than €10 for Ver3 Best regards Manfred Beilfuss

Incrementing the date?

2004-09-13 Thread Beckett Richard-qswi266
Guys, I have another conundrum... I have a directory with a series of files, named like this: 251_20040525_051500.log Where the 251 is a device number, and the 20040525_051500 is a date and time string, which means: 25th May 2004 05:15.00 I can easily extract the date, and hour (which is all

RE: installing Net::SSHW32 issue.

2004-09-13 Thread Jutu Subramanian, Srinivasan (Cognizant)
Hi, Thanks for your help. Pre requisites problem solved. But, After that it throws the make file problem. Can you tell me how to sort out. I have attached the cmd. -Original Message- From: Sisyphus [mailto:[EMAIL PROTECTED] Sent: Monday, September 13, 2004 7:07 PM To: Jutu Subramania

Re: installing Net::SSHW32 issue.

2004-09-13 Thread Sisyphus
Jutu Subramanian, Srinivasan (Cognizant) wrote: Hi, While trying to install the Windows Secure shell perl module, I am gettting this problem. <> While trying to install the IO-Select-Trap, I am getting the following problem. <> Can you please sort out the problem asap. Try running: nmake clean f

installing Net::SSHW32 issue.

2004-09-13 Thread Jutu Subramanian, Srinivasan (Cognizant)
Title: installing Net::SSHW32 issue. Hi, While trying to install the Windows Secure shell perl module, I am gettting this problem. <> While trying to install the IO-Select-Trap, I am getting the following problem. <> Can you please sort out the problem asap. This e-mail and

ole browser broke, xp sp2?

2004-09-13 Thread Hon Shi
My perl doc OLE browser broke. I get this (see below) in the bottom pane. Help! Thanks (maybe a new corp gpo setting?) function rollon(frame) { var event = window.parent.frames(frame).event; var element = event.srcElement; if (element.tagName != "TD") { element = elemen

RE: Is it there?

2004-09-13 Thread Beckett Richard-qswi266
> sub _Typelib { > my ($clsid,$title,$version,$langid,$filename) = @_; > # Filenames might have a resource index appended to it. > $filename = $1 if $filename =~ /^(.*\.(?:dll|exe))(\\\d+)$/i; > # Ignore if it looks like a file but doesn't exist. > # We don't verify existance of

RE: String matching ?

2004-09-13 Thread Anderson, Mark (Service Delivery)
use utf8; my $test1 = "AAgUhYJAAAgAhsqdtbb/K0f7PU\+D"; print "string match\n" if ( $test1 =~ m/\Q$test1\E/ ) ; You don't need to escape the / inyour string, simply anchor it in the regexp with \Q \E. See perldoc perlre for details. Kind regards, Mark Anderson SMS Deployment The Royal Bank of Sc

String matching ?

2004-09-13 Thread Nicolae.Popovici
Title: String matching ? Hello guys,   my $test1 = "AAgUhYJAAAgAhsqdtbb\/K0f7PU\+D";   if ( $test1 =~ m/$test1/ )   { print "string match \n  ";   }  The above code behaves strange ( in my opinion ) and I do not know why and how can it be fixed ?  In my opinion it shoul