Perl editors

2000-10-30 Thread Charles Maier
This subject comes up alot.. mostly someone just yelling out "what is *best* *free* perl editor?? etc... This is unanswerable and probably should never be asked. BUT.. I would like to mention the most NON-FREE perl editor I know of... PERLBUILDER... actually it is an IDE. They came out with ve

RE: File upload(FORM) question

2000-10-30 Thread Paul Rogers [CE]
Personally, I would break it up into two steps. Step one would be for the user to enter the data info. Then step two would be to upload the file. I think this simplifies the process and allows you to only have to worry about one thing at a time. p --- _

Perl-Editor

2000-10-30 Thread Ralf Lister
Hello, can someone point me to a free Perl-Editor? Best Regards, Ralf Lister, Khainata Web Designers, La Paz - Bolivia ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Re: Installation - It CAN be improved!

2000-10-30 Thread Richard Latshaw
Title: Re: Installation - It CAN be improved! Date: Sun, 29 Oct 2000 22:55:41 -0800 From: Jon Bjornstad <[EMAIL PROTECTED]> To: Cameron Dorey <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: Installation - It CAN be improved! Cameron Dorey wrote: >> Did you *read* the FAQ? Apparently

RE: deleting first line of a file

2000-10-30 Thread Plunkett, Matt
Copy each line from the file into a temporary file, except for the first line. Delete the file, and rename the temporary file to the original file name. Something like... open( IN, "input.txt" ) or die "uhoh: $!"; open( OUT, ">output.txt ) or die "uhoh: $!"; my $count = 1; while ( ) {

Win32::API - how to call DLL

2000-10-30 Thread Wendy K
Hi, I am trying to write a Win32::API based function to call my own DLL I created using Microsoft Visual Studio using MFC on WinNT. It works fine when I send no parameters.But when my perlscript calls the function with a parameter it crashes Perl56.dll.It will work oK for system dlls like kerne

HTTP && Post

2000-10-30 Thread Mike Kangas
I have a script that accepts web requests on port 80 and redirects these requests to other remote servers. A "load balancer" in a meta-physical sense. But, I am having trouble redirecting POST's. GET's were easy. Not only am I having trouble getting to work but also trouble finding aany informatio

RE: Image::Magick

2000-10-30 Thread erskine, michael
> -Original Message- > From: Alexandr Chorny [mailto:[EMAIL PROTECTED]] > Sent: 30 October 2000 11:27 > To: [EMAIL PROTECTED] > Subject: Image::Magick > > > Hello! > > How do I install Image::Magick on Win'98 with ActiveState > Perl 5.005_03 > build 522? ppm install Image-Magick (wh

Image::Magick

2000-10-30 Thread Alexandr Chorny
Hello! How do I install Image::Magick on Win'98 with ActiveState Perl 5.005_03 build 522? For this line $image->Resize(width=>150,filter=>Quadratic); it says "Can't locate auto/Image/Magick/Resize.al in @INC" -- Best regards, Alexandr mailto:[EMAIL PROTECTED] _

Re: core command line parse bug? "c:\temp dir\"

2000-10-30 Thread Philip Newton
St. Amand, Paul R. wrote: > I'm not in control of how I get the \'s into the program. I > need to try and resolve why the \" is being translated. > I'm going to try and dig into the ARGV source and see what I find. My guess is that it's the C runtime library of the compiler that Perl was compil

Re: DBD::MySQL

2000-10-30 Thread Philip Newton
[Nicholas, please choose an appropriate subject!] Nicholas Parr wrote: > I am stumped! When I run the following script I get an error > message that says the the server cannot find DBD. That would probably be the cause of the error message :) > use Mysql; Don't know this module. Do you reall