Is there any module for MS Works (.wdb) file format conversion to MS Excel? [Non-text portions of this message have been removed]...
20530
SMC
smartdefense
Feb 22, 2005 12:12 am
Hi, I need to open web pages starting from "http://xxx.com/x&mid=1" then the next one is "http://xxx.com/x&mid=2" and so on (the last digit should be a...
20531
Paul Archer
tigger@...
Feb 22, 2005 2:15 am
Have you tried search.cpan.org yet? ... Reporter: "What do you think will be the biggest problem in computing in the 90's?" Paul Boutin: "There are only 17,000...
20532
Nikhil Mulley
nikhiltheprince
Feb 22, 2005 4:55 am
What are all these $@%*<> signs and how do I know when to use them? Those are type specifiers: $ for scalar values @ for indexed arrays % for hashed arrays...
20533
lakshmi.sailaja@...
Feb 22, 2005 4:56 am
Hello Dave, Thanks a ton for the response. Can you also throw some light on import/export? How do I use it in my module? Regards, Lakshmi ... From: Dave Gray...
20534
SMC
smartdefense
Feb 22, 2005 8:40 am
Hi, I need to make a loop to open several web pages. The issue is $i in the last line of the script does not work. I am stuck. Any help is appreciated. ... ...
20535
daymobrew@...
daymobrew
Feb 22, 2005 9:54 am
... It's not working because you are using single quotes. Variables are not expanded when within single quotes, but are expanded inside double quotes and when...
20536
daymobrew@...
daymobrew
Feb 22, 2005 2:29 pm
... The above code will not save the web page to a file, but it will open Internet Explorer to display the file. You could use the LWP::UserAgent module to...
20537
perlmails
Feb 22, 2005 3:23 pm
Hi Paul, Of course, I did try CPAN search before asking for help. Yielded mostly, Excel parsers and convertors from dbases (like so ...
20538
Jonathan Mangin
jon.mangin@...
Feb 22, 2005 5:02 pm
I'm trying to construct a couple of default timestamp scalars. my $date = `date +%Y%m%d`; Result: 20050222 (fine) my $btime = $date . '00000039;; my $etime =...
20539
Charles K. Clarkson
charlesclarkson
Feb 22, 2005 5:18 pm
... No. If $date is 2005022 then $btime is 20050222000000 and $etime is 20050222235959. ... You might tell us what results you are expecting. HTH, Charles K....
20540
Paul Archer
tigger@...
Feb 22, 2005 5:37 pm
Look at the sprintf, localtime and time functions. ... ______________________________________________________________________ "Contrariwise," continued...
20541
parastoo_ca
Feb 22, 2005 6:15 pm
MySQL server crashed and I had this error when I tried to use Bugzilla. Please let me know what am I suppose to do so I this does not happen in future. thanks....
20542
Jonathan Mangin
jon.mangin@...
Feb 22, 2005 7:53 pm
... From: "Charles K. Clarkson" <cclarkson@...> To: <perl-beginner@yahoogroups.com> Sent: Tuesday, February 22, 2005 12:17 PM Subject: RE: [PBML] Simple...
20543
Mike Dillinger
mikedpan
Feb 22, 2005 8:24 pm
... It looks like your MySQL server is refusing connections, probably because it is in a funky state. I would try restarting the MySQL service. If that...
20544
Charles K. Clarkson
charlesclarkson
Feb 22, 2005 9:23 pm
... Sounds like you need 'chomp39;. It removes the trailing newline, if present. chomp( my $date = `date +%Y%m%d` ); Paul's suggestion is a better solution. Perl...
20545
Mike Southern
mikesouthern
Feb 22, 2005 10:18 pm
I assume that if the host is localhost that your server is on a computer at your home or office? If so, when the computer crashed, does MySQL restart...
20546
Charles K. Clarkson
charlesclarkson
Feb 22, 2005 10:30 pm
... Are you sure? I thought it was. ... Seems there is a little overhead. Check for yourself. I get eight new entries in the symbol table (%main::), but some ...
20547
Jonathan Mangin
jon.mangin@...
Feb 22, 2005 10:48 pm
... From: "Charles K. Clarkson" <cclarkson@...> To: <perl-beginner@yahoogroups.com> Sent: Tuesday, February 22, 2005 4:22 PM Subject: RE: [PBML] Simple...
20548
Luinrandir Hernsen
Luinrandir
Feb 23, 2005 12:58 pm
I am writing a game and I am trying to determine, if a player owns certain castles then he is king of that area. Your code looks like it loops checking for a...
20549
Luinrandir Hernsen
Luinrandir
Feb 23, 2005 1:13 pm
OK.. I will try this again. In the game your name is $Playername. the castles you own are kept in a file as an array. This array is a list of names like. ...
20550
Paul Archer
tigger@...
Feb 23, 2005 1:22 pm
I think that the earlier poster who suggested the for[each] loop had the best solution--but if you insist on a loopless comparison, how about this: if (...
20551
Luinrandir Hernsen
Luinrandir
Feb 23, 2005 1:45 pm
hey! that looks like the stuff.... if ( ($playername)x10 eq @DataC[1,4,7,11,12,22,32,33,40,50] ) { ... } since I am checking for names, not numbers i would...
20552
Paul Archer
tigger@...
Feb 23, 2005 3:49 pm
Good catch: that *should* be 'eq', not '=='. (All them big numbers threw me.) 8-) But the 'x' says 'repeat this string' x number of times. An asterisk would be...
20553
Mark Sutfin
msutfin2
Feb 23, 2005 3:55 pm
I'm trying to match a pattern in multiple files. Each file has multiple lines and may have zero to multiple matches. Here's what I used to test the regex... ...
20554
Paul Archer
tigger@...
Feb 23, 2005 3:58 pm
I'm a bit busy to dig through this right now, but you might look at the 'tr' operator to count occurences. Paul ... Whenever you feel anger, you should say, ...
20555
daymobrew@...
daymobrew
Feb 23, 2005 6:23 pm
I have a CGI that displays the most recent 30 from the Apache access log. These are the last 30 lines. Instead of reading the entire file in I push each line...
20556
merlyn@...
merlynstoneh...
Feb 23, 2005 7:02 pm
... daymobrew> I have a CGI that displays the most recent 30 from the Apache access daymobrew> log. These are the last 30 lines. use File::ReadBackwards from...
20557
Paul Archer
tigger@...
Feb 23, 2005 7:05 pm
Randal's suggestion is surely the best, but if you want to avoid modules/DIY... If you don't mind calling an external program, you can always call tail--but...
20558
merlyn@...
merlynstoneh...
Feb 23, 2005 8:24 pm
... Mark> $count = () = $_ =~ m/declare\s+.+\s+procedure92;s+for92;s+(\w+)/i; Mark> if ($1) { This is not good. $1 may retain its value from the previous...