Re: How to check if a Module is installed? Defining my own 'CPAN' FTP server for modules

2001-01-09 Thread Gerrit P. Haase
<9 Jan 2001, 13:01 Uhr wars, als Martin Moss schrieb:> < How to check if a Module is install > > I wish to write an installation script which will accompany a new module > I've written, > It must install the new module, and then check for the presence of some > other "inhouse" written modules. If

EXECL VBA macro to PERL

2001-01-09 Thread Yakov Peretz
Hello, I'm trying to translate the following VBA into PERL 1. Need to go to the last line in the Spreadsheet. Selection.End(xlDown).Select Thanks Yakov ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mai

Re: Perl question

2001-01-09 Thread Will W
- Original Message - From: Cornish, Merrill <[EMAIL PROTECTED]> To: Dave Navarro <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 09, 2001 9:17 AM Subject: RE: Perl question > die() throws an exception. If there is nothing there to catch that > If, however, you are mer

RE: Perl question -

2001-01-09 Thread Naftel, Bill S
okay, i'm a complete dummy. i've used eval but not for exceptions, probably its main purpose(?). do you have a little example maybe? stumblin', bill [EMAIL PROTECTED] 850.968.7764 -Original Message- From: "Cornish; Merrill" [mailto:[EMAIL PROTECTED]] Sent: Tuesda

Re: Perl question

2001-01-09 Thread Carl Jolley
On Tue, 9 Jan 2001, Dave Navarro wrote: > Does "die" just end a function or does it end the entire script? > To "end" a function use the return command. The die function will write a message to STDERR and exit the entire script. [EMAIL PROTECTED] All opinions are my own and not neces

RE: Perl question

2001-01-09 Thread Ron Hartikka
Merrill, you mean "set up exception handlers", not "step up", right? (Could confuse newbie.) Also, why not mention using 'return' to "escape" from a function? You can use 'return' any And, Dave, you can & should read about 'return' in the perlsub manpage and about 'die' in the perlfunc manpage.

RE: Perl question

2001-01-09 Thread Cornish, Merrill
die() throws an exception. If there is nothing there to catch that exception, then the program ends. If there is an exception handler, then the die() can be stopped there, such as at the function call. You use eval() to step up exception handlers. If, however, you are merely looking for an escap

Perl question

2001-01-09 Thread Dave Navarro
Does "die" just end a function or does it end the entire script? --Dave ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Re: Archiving of files . . .

2001-01-09 Thread Alloun, Jonathan
Title: Re: Archiving of files . . . Hello, I have a Perl program that keeps a log every time the script is run. I need to archive this log every two weeks. What is the best way to run pkzip so all the files within a particular directory get archived?? Or perhaps there is a pk

Re: Important

2001-01-09 Thread Brian Steele
Better fix (for IIS4) http://www.microsoft.com/ntserver/nts/downloads/critical/q267559/ Brian - Original Message - From: "Brian Steele" <[EMAIL PROTECTED]> To: "Mark G. Franz" <[EMAIL PROTECTED]>; "Cumhur KIZILARI" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tu

RE: ProgressBar

2001-01-09 Thread Dunnigan,Jack [Edm]
$status_var=#some_number; $mw->update; It would be better if you saved the progressbar widget reference and just update that. i.e. $pb=$mw->ProgressBar(blah blah)->pack(blah); $status_var=#some_number; $pb->update; Jack > -Original Message- > From: Carlo [mailto:[EMAIL PROTECTED]] > S

Re: Important

2001-01-09 Thread Brian Steele
For a quick fix, rename ism.dll to ism.old, or something like that. You may have to restart the Web service. Brian - Original Message - From: "Mark G. Franz" <[EMAIL PROTECTED]> To: "Cumhur KIZILARI" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 0

Re: Important

2001-01-09 Thread Mark G. Franz
Of course this is only true if the .htr extension application is available... -Original Message- From: Cumhur KIZILARI <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, January 09, 2001 6:25 AM Subject: Important >From >h

Re: Important

2001-01-09 Thread Brian Steele
http://TARGETIIS/scripts/test.pl+.htr ...works against my NT4/IIS4 box as well. Luckily, I don't embed passwords in my scripts. Unluckily however, it works against EVERY file in the cgi-bin directory. Like my ini files. I've now moved all the scripts to a different directory (not visible to th

How to check if a Module is installed? Defining my own 'CPAN' FTP server for modules

2001-01-09 Thread Martin Moss
I wish to write an installation script which will accompany a new module I've written, It must install the new module, and then check for the presence of some other "inhouse" written modules. If these modules aren't installed on that machine the script will go away and install them. Ideally I'd li

Re: compression

2001-01-09 Thread Philip Newton
Carlo wrote: > I am compressing an archive using > use Archive::Zip ; > use Archive::Zip::Tree; > and it works but let say that i do not want to compress files > with extention *.exe. > so if I am adding a directory > $zip1->addTree( > How can I exclude the files *.exe from the compress

Important

2001-01-09 Thread Cumhur KIZILARI
From http://www.guninski.com/iishtr.html Georgi Guninski security advisory #33, 2001 IIS 5.0 allows viewing files using %3F+.htr Systems affected: IIS 5.0 patched against the file fragment reading vulnerability Risk: Medium Date: 8 January 2001 Legal Notice: This Advisory is Copyright (c) 2000

ProgressBar

2001-01-09 Thread Carlo
Hi there, I have a problem using ProgressBar. I have created the W. : $mw->ProgressBar( -borderwidth => 2, -relief => 'sunken', -width => 200, -padx => 2, -pady => 2, -variable => \$status_var, -colors => [0 => 'bl

Re: GD png colours (printed)

2001-01-09 Thread Philip Newton
Nick wrote: > I am creating graphs as PNGs using GD, all works fine and the > graphs look great inthe browser but when printed the colours are > wrong eg green background with red lines instead of white > background with black lines. Could be something I've missed > but I am scratching my head an