statically link module in win32.

2003-06-17 Thread Tom Henrik Aadland
Hi! I've been trying to compile and statically link a perl module on win 2000. I use the latest mingw package gcc-3.02 and dmake for windows. I compile the perl source without any problems, perl 5.8. When i try to build the module Filter-1.25, the problem comes when i try to run the test. perl

Re: API call crashes if I pass parameters.

2003-06-17 Thread csaba . raduly
On 16/06/2003 22:57:22 perl-win32-users-admin wrote: I am having trouble with API, similar to these posts: http://aspn.activestate.com/ASPN/Mail/Message/732561 http://aspn.activestate.com/ASPN/Mail/Message/perl-win32-users/753232 Like those posts, I had API working. When I tried the API scrip

I want monitor Sql Data

2003-06-17 Thread Mohamed Tantawy
hi all i need to monitor SQL 2000 server Data on Clustering Servers by perl or mrtg Thank You ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: question

2003-06-17 Thread csaba . raduly
On 16/06/2003 20:54:52 Michael Higgins wrote: FARRINGTON, RYAN wrote: I think I bugged Bill enough so I'll ask the list... This was provided by Bill: my @sortlist = map { $_-[0] } sort { mysort ($field, $type, $case, $dir) } map { [

Re: statically link module in win32.

2003-06-17 Thread Sisyphus
- Original Message - From: Tom Henrik Aadland [EMAIL PROTECTED] gcc: `cat: No such file or directory gcc: blib\arch\auto\Filter/extralibs.all`: No such file or directory dmake.exe: Error code 1, while making 'myperl' dmake.exe: Error code 255, while making 'myperl' The cat

RE: Using Outlook in Win32::OLE

2003-06-17 Thread Charbeneau, Chuck
From: Bautista, Rodel D.(Digitel-GSM) Subject: FW: Using Outlook in Win32::OLE I'm entirely at a loss here. I'm in dire need of help with my problem below. I've tried searching for a perl script that automatically connect/log me to an outlook application and send a mail with an

Fatal problem with Net::Ping

2003-06-17 Thread Bullock, Howard A.
I have use Net::Ping in a ActiveState PDK 5.10 PerlSvc.exe service. The program fails after running and processing several thousand computers. I have tracked the problem down to this statement: my $ping = $p-ping($host,5); in this subroutine: sub PingHost { my $host = shift; #my $p =

-- trouble.

2003-06-17 Thread Beckett Richard-qswi266
Guys, I think I have worked out why the following line doesn't do what I expected it to. I want @all_lines to become @all_lines from 0 up to $line_count minus 1. This line: @all_lines = @all_lines[0..($line_count--)]; I think is making @all_lines become @all_lines from 0 to $line_count, AND

Re: -- trouble.

2003-06-17 Thread $Bill Luebkert
Beckett Richard-qswi266 wrote: Guys, I think I have worked out why the following line doesn't do what I expected it to. I want @all_lines to become @all_lines from 0 up to $line_count minus 1. This line: @all_lines = @all_lines[0..($line_count--)]; I think is making @all_lines

Re: statically link module in win32.

2003-06-17 Thread Tom Henrik Aadland
gcc: `cat: No such file or directory gcc: blib\arch\auto\Filter/extralibs.all`: No such file or directory dmake.exe: Error code 1, while making 'myperl' dmake.exe: Error code 255, while making 'myperl' The cat command are mapped to type in Config.pm so it works fine, the file

RE: -- trouble.

2003-06-17 Thread Joseph Discenza
Beckett Richard-qswi266 wrote, on Tuesday, June 17, 2003 9:26 AM : I think I have worked out why the following line doesn't do what : I expected : it to. : : I want @all_lines to become @all_lines from 0 up to $line_count minus 1. : : This line: : : @all_lines =

IDE for Perl/CGi

2003-06-17 Thread ashish srivastava
Hi Anybody knows of a good IDE for PERL/CGI development (freeware of course ;) ). Please provide the link to it. Thanks Ashish _ Wedding blues? Need help? http://www.msn.co.in/Matrimony/

Perl/TK

2003-06-17 Thread Christopher Moss
Can anyone help me with this fairly simple piece of Perl/Tk – actually I’ve taken it from the Man page and I can’t seem to get it to work! I simply added the call to create the main window. The script is as follows: .code use strict; use Tk::BrowseEntry; my $main =

RE: -- trouble.

2003-06-17 Thread Beckett Richard-qswi266
Put the -- in the front instead of the back. D'oh! :-D After _all_ this time, I'm still just a newbie! ;-) Thanks. R. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

FW: IDE for Perl/CGi

2003-06-17 Thread Pervaiz, Yasir
ANYONE CAN help get pearl 5.8 going on my windows 2000 server machine. I like to run few scripts to get some information from user manager in windows 2000. I have installed and got the msi file. it fails. any idea any help you can offer me to get the pearl going for me. I have done some korn

Re: Perl/TK

2003-06-17 Thread Elliot L. Tobin
Christopher, my $frame = $main-Frame-pack; # capital Frame And add $main-MainLoop; Should work fine. - EllioT - On Tue, 17 Jun 2003, Christopher Moss wrote: ::Can anyone help me with this fairly simple piece of Perl/Tk – actually ::I’ve taken it from the Man page and I can’t seem to get

Re: Problem using rename() on WinXP Pro/ActiveState

2003-06-17 Thread $Bill Luebkert
Elliot L. Tobin wrote: I have the following script that uses File::Find, reads an id3 tag for each mp3 it finds, and renames it according to my specified pattern. There is more to do, but it will not rename the files. I do not get an error but nothing happens. It works just fine on FreeBSD

FW: Perl/TK

2003-06-17 Thread Christopher Moss
Thanks Elliot, I thought I must be doing something really dumb!!! Works a treat. Chris Christopher Moss Murray McIntosh O'Brien Wellesley House 204 London Road Waterlooville PO7 7AN (023) 9223 1006 [EMAIL PROTECTED] -Original Message- From: Elliot L. Tobin [mailto:[EMAIL PROTECTED]

Re: FW: IDE for Perl/CGi

2003-06-17 Thread Cameron Dorey
Pervaiz, Yasir wrote: ANYONE CAN help get pearl 5.8 going on my windows 2000 server machine. I like to run few scripts to get some information from user manager in windows 2000. I have installed and got the msi file. it fails. any idea any help you can offer me to get the pearl going for me. I

RE: FW: IDE for Perl/CGi

2003-06-17 Thread Scot Robnett
'pearl' should be Perl (for the language) or perl (for the binary). born shell should be Bourne Shell. You don't say what kind of an error you're getting with the MSI, you just say it fails. Fails how? If you've done shell programming, a lot of Perl will look familiar to you. When you get it

Re: IDE for Perl/CGi

2003-06-17 Thread Osman K Eroktay
Open Perl IDE, the one I use. I recommend it to everybody who needs a decent IDE for Perl development. Here is the link to it, http://open-perl-ide.sourceforge.net/ ashish srivastava wrote: Hi Anybody knows of a good IDE for PERL/CGI development (freeware of course ;) ). Please provide the

Re: FW: Automate creation of ODBC DSN

2003-06-17 Thread Anthony Rosati
Mark, Was Steven's response forwarded to the listserv? If not, could you forward it please? Or, if it was, could someone please froward it to me? Sometimes my Hotmail account chokes on the volume of mail this listserv can produce. Thanks! Tony Rosati From: Ricci, Mark [EMAIL PROTECTED] To:

RE: Using Outlook in Win32::OLE

2003-06-17 Thread Herold Heiko
Works fine for me. Check the configuration of outlook. Try checking if outlook is configured for asking which profile to use when opened. Try the whole thing with outlook already open, in that case you shouldn't get the profile prompt since at first you try to reuse an existing session with

RE: Re: FW: IDE for Perl/CGi

2003-06-17 Thread Chris Anderson
Also, he doesn't state what that has to do with the subject line.. I appologize if my Moron Deector is set to high today, but why Reply to IDE for Perl/CGI? Why not add a NEW list item? :) Original Message --- Pervaiz, Yasir wrote: ANYONE CAN help get pearl 5.8 going on