Windows make environment

2003-09-10 Thread Martin Bower
Can anyone tell me exactly what I need to create an environment in windows, where I can compile my own modules ? I can do this under Solaris fine, but am unsure of the programs I need in MS to do this. It needs to be opensource if possible, as I don't have a compiler installed. Cheers Martin

Re: Windows make environment

2003-09-10 Thread Sisyphus
Martin Bower wrote: Can anyone tell me exactly what I need to create an environment in windows, where I can compile my own modules ? I can do this under Solaris fine, but am unsure of the programs I need in MS to do this. It needs to be opensource if possible, as I don't have a compiler installed.

RE: Win32::GUI::Label

2003-09-10 Thread Eric Logeson
Johan, Your suggestion regarding the size being set properly was the problem. Thanks eric -Original Message- From: Johan Lindstrom [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 5:20 PM To: [EMAIL PROTECTED] Subject: Re: Win32::GUI::Label At 15:39 2003-09-09 -0400,

RE: learn perl

2003-09-10 Thread Moon, John
All of the suggestion I saw where very goods ... I started with the Llama book - Learning Perl, read and worked the examples, then started writing ... not very good at first when I look back at some old code ... but it got the job done As I coded more I found I had more questions and

eventlogs

2003-09-10 Thread pineau
Hiall!!! Im running a script that lists error and warnings eventlogs it works perfectly on my machine, but on remote machines, it reads only some logs a bit randomly and not all Could you find a reason why??? Cordialement, -- Jean-Christophe PINEAU

Problem with if statement

2003-09-10 Thread upscope
When I execute the following code I get an error that says there is a syntax error on line 21 near } ). Can anyone see what I'm missing? The sleep in the print in the else statement and the sleep are just for testing. I'm trying to check for a blank membername field, the else statements will

RE: Looking for Documentation and examples about Win32:NetAdmin f unctions

2003-09-10 Thread Fish, David
Hello Howard! Do you know what ppm I need to install for the lanman? I tried lanman and win32-lanman with no success. Thanks for your help. David E. Fish Property Operations Systems Analyst - Micros 3700 Marriott International, Inc (301) 380-3331 [EMAIL PROTECTED] This

RE: Problem with if statement

2003-09-10 Thread Moon, John
If($FORM{membername ne }) { should read if($FORM{membername} ne ) { If you use CGI you wouldn't need from read ... to line before $blank = ; use strict; use CGI; use vars qw(%FORM); my $q=new CGI; foreach ($q-param) { $FORM{$_}=$q-param($_); } $blank= ;

Re: Problem with if statement

2003-09-10 Thread Dave Kazatsky
The if statement shouldn't be capitalized. Give that a try. Dave Kazatsky Senior Middleware Administrator W. (908) 575-6947 C. (973) 865-8106 upscope [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 09/10/2003 01:04 PM To: Perl Win32 users [EMAIL PROTECTED] cc:

RE: Problem with if statement

2003-09-10 Thread Joseph Discenza
upscope wrote, on Wednesday, September 10, 2003 1:04 PM : When I execute the following code I get an error that says there : is a syntax : error on line 21 near } ). Can anyone see what I'm missing? : If($FORM{membername ne }) { Try: if($FORM{membername} ne ) { Does that help any?

Re: Problem with if statement

2003-09-10 Thread eric-amick
If($FORM{membername ne }) { if($FORM{membername} ne ) { -- Eric Amick Columbia, MD ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Problem with if statement

2003-09-10 Thread Peter C. Hugger
It looks like a simple syntax error. You have a capital I in your if statement. It should be all lower case. PCH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of upscope Sent: Wednesday, September 10, 2003 1:04 PM To: Perl Win32 users Subject: Problem with

RE: Problem with if statement

2003-09-10 Thread Malachy
The bracketing is incorrect You have... If($FORM{membername ne }) { It should be... If($FORM{membername} ne ) { One of those mind tricks... -Original Message- From: upscope [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 12:04 PM To: Perl Win32 users Subject: Problem

Moving with File::Copy between Drives

2003-09-10 Thread Ford, Graham
I am getting the error 'Permission denied at test.pl line 3' when moving a file between two drive volumes under WIndows 2000. The script is running with administrator permissions. The script is short: _start use File::Copy; move('e:/test','d:/test'); end This works fine if

Re: Moving with File::Copy between Drives

2003-09-10 Thread Jan Dubois
On Wed, 10 Sep 2003 13:33:40 -0700, Ford, Graham [EMAIL PROTECTED] wrote: I am getting the error 'Permission denied at test.pl line 3' when moving a file between two drive volumes under WIndows 2000. The script is running with administrator permissions. The script is short: _start

HTTP::Date?

2003-09-10 Thread Peter A. Peterson II
Ok, I'm not an idiot, but I'm really confused ASPN talks about the module HTTP::Date, and I have used it in a script, but I can't find it in ppm anywhere. Does anyone know where this module is to be found? Peter -- Peter A. Peterson II, technician and musician. ---=[

RE: HTTP::Date?

2003-09-10 Thread Tobias Hoellrich
It's part of the libwww-perl bundle. try: ppm install libwww-perl Hope this helps Tobias -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter A. Peterson II Sent: Wednesday, September 10, 2003 3:18 PM To: [EMAIL PROTECTED] Subject: