Re: Tk::JPEG Errors w/Perl 5.6.1 Build 633

2002-08-14 Thread Syl
> My view is that you notify Nick Ing-Simmons, because the problem (I believe) > lies with his code. I don't think it is something that AS should be held > accountable for. > > Nick, in turn, might well say it's your fault for using a Tk::JPEG that was > compiled for a later version of Tk :-) Wh

Re: XML::LibXML

2002-08-14 Thread Randy Kobes
On Fri, 9 Aug 2002, Gladstone Alexander wrote: > Can someone tell me how to set up my windows 2000 machine to use XML::LibXML > in my perl scripts? What do I need and where can I get it? > Thanks. We have a XML::LibXML ppm package in our repository at http://theoryx5.uwinnipeg.ca/ppmpackages/

Re: regexp

2002-08-14 Thread Carl Jolley
On Wed, 14 Aug 2002, Jacobson, Karl wrote: > I am trying simply to do a search and replace and have identified the string > that I want to replace with another. > > $_ holds the string to be manipulated > $was holds the search string (split from an input file) > $is holds the replacement string (

Re: Tk::JPEG Errors w/Perl 5.6.1 Build 633

2002-08-14 Thread Sisyphus
- Original Message - From: "Syl" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 15, 2002 4:56 AM Subject: Tk::JPEG Errors w/Perl 5.6.1 Build 633 > The following error occurs when trying to run Guido with Perl 5.6.1 build > 633 > > Default die handler restored. > Tk::

Re: regexp

2002-08-14 Thread Jing Wee
At 03:45 PM 8/14/2002 -0700, you wrote: >I am trying simply to do a search and replace and have identified the string >that I want to replace with another. > >$_ holds the string to be manipulated >$was holds the search string (split from an input file) >$is holds the replacement string (also spli

RE: regexp

2002-08-14 Thread Carter Thompson
Interesting, seems to work fine. Verify the contents of $was and $is and then try this: ($newstring = $_) =~ s/$was/$is/; print ("Newstring is: $newstring\n"); Cheers, Carter. > -Original Message- > From: Jacobson, Karl [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 14, 20

regexp

2002-08-14 Thread Jacobson, Karl
I am trying simply to do a search and replace and have identified the string that I want to replace with another. $_ holds the string to be manipulated $was holds the search string (split from an input file) $is holds the replacement string (also split from an input file) s/$was/$is/; doesn't wo

Re: Perl 5.6.1 & Win32::GUI & TheGUILoft

2002-08-14 Thread Johan Lindstrom
At 12:57 2002-08-14 -0600, Syl wrote: >Perl 5.6.1 build 633, Win32::GUI and TheGUILoft generate Prototype Mismatch >errors. For example > >Prototype mismatch: sub main::MB_ICONHAND vs () at C:/Perl/lib/Exporter.pm >line 57. This was discussed on the TGL support mailing list: http://groups.yahoo.c

Perl 5.6.1 & Win32::GUI & TheGUILoft

2002-08-14 Thread Syl
Perl 5.6.1 build 633, Win32::GUI and TheGUILoft generate Prototype Mismatch errors. For example Prototype mismatch: sub main::MB_ICONHAND vs () at C:/Perl/lib/Exporter.pm line 57. Exporter::import('NULL', 'WIN31_CLASS', 'OWNER_SECURITY_INFORMATION', 'GROUP_SECURITY_INFORMATION', 'DACL_SECURITY_I

Tk::JPEG Errors w/Perl 5.6.1 Build 633

2002-08-14 Thread Syl
The following error occurs when trying to run Guido with Perl 5.6.1 build 633 Default die handler restored. Tk::JPEG object version 800.023 does not match $Tk::JPEG::XS_VERSION 800.024 at C:/Perl/lib/DynaLoader.pm line 225. This error has been reported before. Who do I notify at AS about this pr

RE: extracting data via telnet from a strange port setup

2002-08-14 Thread Norris, Joseph
Carroll, Thanks for the response. I agree but there are situations when it is very necessary. I have one application where I use Net::Telnet to drive a set of text screens to extract a report that I need to "slice and dice" for my database. This is another one of those "interesting" projects. T

RE: extracting data via telnet from a strange port setup

2002-08-14 Thread Carroll, Shawn
Hi Joseph, I'm really curious... Whenever I hear of someone using a script to drive/get information using telnet I wonder why it's necessary. It can be kind of complex and unpredictable (compared to ftp for file transfer or http, etc.) Does it have something to do with getting access to someone

Reading an uploaded Excel file

2002-08-14 Thread parvez
Hi Gurus, I want to parse an excel file which will be uploaded through the browser and passed to my CGI script. I can read the file through the command prompt(Thanks to Spreadsheet::ParseExcel !!). My problem is that I cannot detach the file and read it. Please HELP !! Thanx in advance. Parv