Re: Running rc4 script

2003-03-14 Thread Sisyphus
- Original Message - From: "jack ander" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 15, 2003 4:01 AM Subject: Running rc4 script > Hi, > > Can anyone instruct me on how to make this script run using ActivePerl on > WinXP? > > Thanks! > [EMAIL PROTECTED] > > > "To us

PPM seems complex

2003-03-14 Thread Glenn Linderman
Hi, I have, over time, figured out the incantations for PPM to set up my repository list, and I know to search first, then install what was found to avoid ambiguity. And I know to check the version of the packages from different repositories. That's a lot to teach someone that doesn't care a

RE: localtime()

2003-03-14 Thread Bill Cernansky
Bryan Tom Team EITC wrote: > Can anyone point me to documentation on how to configure the output of > localtime(). What I want is to have something like > $year$month$day$hour$min$sec all in one string (20030314160130). http://www.rocketaware.com/perl/perlfunc/localtime.htm = Bill Cernansky

Re: Adding a WorkSheet to Excel using Win32::OLE

2003-03-14 Thread Carl Jolley
On Thu, 13 Mar 2003 [EMAIL PROTECTED] wrote: > > > I am trying to add a Worksheet to an Excel Workbook file. I can use the Add > method to put the sheet with its tab on the left hand side but I want to add its > tab on the RIGHT hand side. I have tried: > > $book->Worksheets->Add( After=

Re: localtime()

2003-03-14 Thread C. Church
> Can anyone point me to documentation on how to configure the output of > localtime(). What I want is to have something like > $year$month$day$hour$min$sec all in one string (20030314160130). Get the return results as an array, and join or otherwise concatenate them, seems perfectly straight-for

Re: Simple syntax question

2003-03-14 Thread Carl Jolley
On Thu, 13 Mar 2003, Mark A. Chalkley wrote: > Ok, a dumb question here (I must be having a brain halt...): > > Given the following snippet of code to load data from a file into a > hash, > > while( ) { /(.*)\,(.*)/ && ($hash{$1} = $2) }; > > > what does the '&&' do? > It's a logical AND operato

localtime()

2003-03-14 Thread Bryan Tom Team EITC
Can anyone point me to documentation on how to configure the output of localtime(). What I want is to have something like $year$month$day$hour$min$sec all in one string (20030314160130). Thanks ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To uns

RE: Win32 Icon (resource) extraction from exe/dll

2003-03-14 Thread Burak Gürsoy
I dont want to compile anything... If I want to, PAR is a good choice I think... Read the subject please... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf > Of Gregory, Carlton > Sent: Friday, March 14, 2003 10:49 PM > To: 'Burak Gürsoy'; [EMAIL PROTECT

RE: Win32 Icon (resource) extraction from exe/dll

2003-03-14 Thread Gregory, Carlton
I think there is a utility/module called perlcc which is not commercial. Should find it on search.cpan.org. I have gotten comments that perlcc is not worth the trouble but I have not tried it personally. I just download free utilities like perl2exe or PerlApp which is in the PDK. -Original Mess

RE: Win32 Icon (resource) extraction from exe/dll

2003-03-14 Thread Burak Gürsoy
If there is a perl way to extract icons and such things from a file, I'd also like to know it... Not any commercial progs please... > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Gregory, Carlton > Sent: Friday, March 14, 2003 4:37 PM > To: [EMAIL P

Re: environment variable issues

2003-03-14 Thread Carl Jolley
On Tue, 11 Mar 2003, jphipps wrote: > I am having problems retreiving some of the environment variables using cgi.pm > here is the code that I am trying to use, what the heck is wrong > > Code > declartions: > use CGI qw/:ALL/; > $cgi = new CGI; > > routine: > { > if (($cgi->http('request_method))

Re: Not matching a dot

2003-03-14 Thread Carl Jolley
On Mon, 10 Mar 2003, Andrew Mansfield wrote: > I want to match files that have no period in their filename. > > So far I have: > > use strict; > use warnings; > > my $start_dir = $ARGV[0] || "."; > use File::Find; > print "Temp file list:\n"; > find sub { > return unless -f; > my $file

Re: Regular Expression matching problem

2003-03-14 Thread Carl Jolley
On Sun, 9 Mar 2003, Electron One wrote: > Hello Everyone, > > If I have a file that contains this, > > test3.txt## > wilma > > wimagren was here > > twilma was type wilma > > wilma > > wilma > > wilma > > twowilm

Re: How do I edit the tab of an Excel worksheet?

2003-03-14 Thread Carl Jolley
On Fri, 7 Mar 2003, Joel Brockman wrote: > After I insert data in a worksheet. > > use Win32::OLE; > $Excel = Win32::OLE->new("Excel.Application"); > $Excel->{Visible} = 1; > $Book = $Excel->Workbooks->Add; > $Sheet = $Book->Worksheets(1); > $Range = $Sheet->Range("A1"); > $Range->{Value} = ['

Re: Parsing test file question

2003-03-14 Thread Carl Jolley
On Thu, 6 Mar 2003, James wrote: > Hi all, > > I have a test file which conatin words separated by > comma and I would like to process and print the result > to an ouput file. The output file should only have at > most 32 characters per line.If the line read is more > than 32 char, then the rest s

Re: Results per page

2003-03-14 Thread Carl Jolley
On Wed, 5 Mar 2003, Erich C. Beyrent wrote: > Hey folks, > > Looking for some ideas. I have a flat file database, which contains a > buttload of records. When I go get a bunch of records, I am running into a > problem where a huge number of records is taking a while to print to the > browser. M