Re: Visual Perl in Visual Studio

2000-05-29 Thread Simon Oliver
Well said Jan, I like ppm and even run my own ppm repository (mainly DBI modules). One ppm advantage is that the html man pages are inserted into the ActiveState document tree. I suppose when we get Visual it will migrate to MSDN htmlhelp. -- Simon --- You are currently subscribed to perl-wi

Re: Visual Perl in Visual Studio

2000-05-29 Thread Robert White
From: "Paul Rogers [CE]" <[EMAIL PROTECTED]> > Well, I think it was a reference to Visual Perl as it will be included in > Visual Studio, which itself includes Visual C++. Well, my VS includes Visual Basic instead. Blew the C++ away after getting tired of 100 meg of fat I wasn't using. A Pe

Re: Visual Perl in Visual Studio

2000-05-29 Thread Jan Dubois
On Mon, 29 May 2000 18:51:31 -0400, Bernie Parent <[EMAIL PROTECTED]> wrote: >Same old story and Microsoft philosophy. Embrace, extend and extinguish. > >Perl was once the software for all computers and operating systems. Ports >once supported >Borland compilers. Microsoft provided dollars to

Re: Visual Perl in Visual Studio

2000-05-29 Thread Jan Dubois
On Mon, 29 May 2000 10:22:16 -0400, "Paul Rogers [CE]" <[EMAIL PROTECTED]> wrote: >> And if you haven't got a C compiler, then Visual Perl won't help you with >> this either. > >Well, I think it was a reference to Visual Perl as it will be included in Visual >Studio, which itself includes Visual

Re: Visual Perl in Visual Studio

2000-05-29 Thread Jan Dubois
On Sun, 28 May 2000 22:02:44 -0400, Matthew Persico <[EMAIL PROTECTED]> wrote: >> In any event, I'm still awe struck by the "Visual Perl" announcement. However, >> the concept does sound intriguing. Having a hard time accepting that MS is so >> closely embracing perl. > > >MS isn't. Sounds to m

Re: Visual Perl in Visual Studio

2000-05-29 Thread Jan Dubois
On Sun, 28 May 2000 20:59:53 -0400, Matthew Persico <[EMAIL PROTECTED]> wrote: >"Paul Rogers [CE]" wrote: >> >> Something I never dreamed would happen... >> >> http://www.activestate.com/Corporate/Media_Center/News/Press959117519.html >> >Does this mean we will FINALLY be able to drop all the

Re: Unresolved externals...

2000-05-29 Thread Jan Dubois
On Mon, 29 May 2000 17:21:19 +, "Brendan McKenna" <[EMAIL PROTECTED]> wrote: > I am trying to link a static version of Perl, but am running into >problems with unresolved external symbols. The ones I am getting errors on >are __imp__PL_op_mutex and __imp__PL_do_undump. I find it a b

RE: Visual Perl in Visual Studio

2000-05-29 Thread Joe Schell
> Behalf Of Bernie Parent > > > Same old story and Microsoft philosophy. Embrace, extend and extinguish. > > Perl was once the software for all computers and operating systems. Ports > once supported > Borland compilers. Microsoft provided dollars to Activestate under the > auspices of providing

Re: Visual Perl in Visual Studio

2000-05-29 Thread Bernie Parent
At 09:36 PM 5/28/00 -0400, Paul Rogers [CE] wrote: >> Does this mean we will FINALLY be able to drop all the PPM crap and just >> invoke the Visual Studio C compile where necessary on ANY CPAN module? >> Ah, the simplicity of >> >> perl Makefile.PL >> make test >> make install > >And what's so com

RE: Installing DBI for use with ACTIVE STATE

2000-05-29 Thread Joe Schell
If you have ActiveState perl then you would use 'ppm' to download and install a module. If you want to install it yourself then you follow the normal perl install procedure download the module (you have done this) uncompress it (you have done this) change to the dir that

RE: Visual Perl in Visual Studio

2000-05-29 Thread Joe Schell
Well I have been doing exactly that for about 2(3?) years now except I use the following steps perl makefile.PL make make test make install Works for me. Doesn't it work for you? > Behalf Of Matthew Persico > > > "Paul Rogers [CE]" wrote: > > > > Something I nev

RE: Mail::Sender

2000-05-29 Thread Charles Maier
I was intrigued by this but it turns out to be something simple ;o)) When you submit the form.. the newlines and carriage returns the hex representations. In my example I put : I wanted to do this for you and in the return string I get: I%0D%0Awanted+to+do%0D%0Athis+for+%0D%0Ayou Normal parsi

problems with duplicated email

2000-05-29 Thread agitocas
Please, take a look at this code. It opens a txt file and email the = users. But each user always gets two emails. Any clue? open (DAT,"<$memberinfo/amdata.db"); if ($LOCK_EX){=20 flock(DAT, $LOCK_EX); #Locks the file } @database_array =3D ; close (DAT); foreach $line(@database_array) { @user

Re: Encrypting Emails

2000-05-29 Thread Edward G. Orton
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - - Original Message - From: "Stuart Moore" <[EMAIL PROTECTED]> To: "Perl-Win32-Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, May 29, 2000 3:51 PM Subject: Encrypting Emails > I want to encrypt some emails, it's been suggested I sig

Re: Mail::Sender

2000-05-29 Thread Conrad Classen
Hmm... The capital C is out... s/%([A-Fa-f0-9]{2})/pack("c",hex($1))/ge; Conrad - Original Message - From: "Jan Harders Perl-Win32-Users Mailing List" <[EMAIL PROTECTED]@lyris.ActiveState.com> To: "Perl-Win32-Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, May 29, 2000 8:23 PM Su

Encrypting Emails

2000-05-29 Thread Stuart Moore
I want to encrypt some emails, it's been suggested I sign them with a PGP key - can anyone recommend a good module to do this with? I will eventually need to port this to a Unix server, so I'd prefer to have Perl-only solutions, although if that's not possible I will use ones including C (or oth

Re:Re: it looks simple

2000-05-29 Thread Douglas Wilson
On 05/27/00, "Greg Wardawy <[EMAIL PROTECTED]>" wrote: > Douglas, > Thank you very much for your quick reply. I can see I wasn't clear. I've > got the same result but not in such a readable, professional way as yours. > But that's still not what I need. I have to print all the lines for which > th

New to LWP::Parallel::UserAgent

2000-05-29 Thread Matthew Rochlin
I'm new to LWP::Parallel::UserAgent and haven't so far successfully been able to perform a fairly simple task: Retrieve the HTML from a list of simple URL's via GET. I've done this in a loop with regular LWP::UserAgent and I'm just trying to make things a bit faster. It seems like I should s

Re: Get program name

2000-05-29 Thread Anthony George
Borkur Gudjonsson wrote: > > If I make a script, prog.pl, whith this statement: > print $0; > which is entirely correct, this will give the *script* name > and create an executable with perl2exe, it prints out > the name of the script, as it was when perl2exe > created the executable and not

Re: Visual Perl in Visual Studio

2000-05-29 Thread Philip Newton
Garold L. Johnson wrote: > [snip] > From the Visual Perl page on ActiveState: > > "Visual Perl is a plug in for Microsoft's next-generation development > environment, Visual Studio 7." > ... > "Visual Perl will be available at the same time as Visual Studio 7." > I read this as saying that Visual

Mail::Sender

2000-05-29 Thread Jan Harders
HI, I wrote a script that is processing an form and then send an email. I used Mail::Sender because it should send files too. it works allright, but I got an textarea in the form for the body of the email. My problem is that the newlines given from the form are not printed in the mail. I tried to

RE: DATA from HTML using STDIN

2000-05-29 Thread Joseph P. Discenza
KC LO at MAXIS wrote, on Saturday, May 27, 2000 12:32 : Is there a way to re-convert characters like ' # ', @, $,%,^,& etc from an HTML page to it's orginal : form instead of the '%21% ' ? I'm passing data from HTML page to a MAccess database using ODBC by the : following method:- : : read(STDIN,

Unresolved externals...

2000-05-29 Thread Brendan McKenna
Hi, I am trying to link a static version of Perl, but am running into problems with unresolved external symbols. The ones I am getting errors on are __imp__PL_op_mutex and __imp__PL_do_undump. I find it a bit odd, since, judging from the names of the symbols, these look like they're

RE: Visual Perl in Visual Studio

2000-05-29 Thread Garold L. Johnson
Paul Rogers [CE] wrote: > Philip Newton wrote: > > So having Visual Perl is orthogonal to having Visual C++; > > you can have one without the other. As I understand it, at > > least. > > So Visual Perl will not require having Visual Studio? This > doesn't seem right. [snip] >From the Visual Perl

Re: Visual Perl in Visual Studio

2000-05-29 Thread Philip Newton
Please don't omit attributions. You've snipped "Philip Newton wrote:" twice already. Paul Rogers [CE] wrote: > Philip Newton wrote: > > So having Visual Perl is orthogonal to having Visual C++; > > you can have one without the other. As I understand it, at > > least. > > So Visual Perl will not

Re: Visual Perl in Visual Studio

2000-05-29 Thread Paul Rogers [CE]
> So having Visual Perl is orthogonal to having Visual C++; you can have one > without the other. As I understand it, at least. So Visual Perl will not require having Visual Studio? This doesn't seem right. VP is a separate entity from VS? P --- --- You are currently subscribed to perl-win32

Re: Visual Perl in Visual Studio

2000-05-29 Thread Philip Newton
Paul Rogers [CE] wrote: > Philip Newton wrote: > > And if you haven't got a C compiler, then Visual Perl won't > > help you with this either. > > Well, I think it was a reference to Visual Perl as it will be > included in Visual Studio, which itself includes Visual C++. As I understood it, Vis

Re: Visual Perl in Visual Studio

2000-05-29 Thread Paul Rogers [CE]
> And if you haven't got a C compiler, then Visual Perl won't help you with > this either. Well, I think it was a reference to Visual Perl as it will be included in Visual Studio, which itself includes Visual C++. p --- --- You are currently subscribed to perl-win32-users as: [archive@jab.org

AW: ftp client...put...FileHandle

2000-05-29 Thread Strohmeier Ruediger
Hi Bas, when using Net::FTP, I do not open the local file before put-ting. Try: . $ftp->put("myfile.local","remote.filename"); $ftp->quit; HTH Rüdiger Rüdiger Strohmeier Email: [EMAIL PROTECTED] > -Ursprüngliche Nachricht- > Von: Bas Janssen [SMTP:[EMAIL

From -> Mail

2000-05-29 Thread Jan Harders
HI, I wrote a script that is processing an form and then send an email. I used Mail::Sender because it should send files too. it works allright, but I got an textarea in the form for the body of the email. My problem is that the newlines given from the form are not printed in the mail. I tried to

ftp client...put...FileHandle

2000-05-29 Thread Bas Janssen
Hello all, I'm using Net::FTP and try to 'put' a file by a filehandle. ( http://search.cpan.org/doc/GBARR/libnet-1.0703/Net/FTP.pm : " put ( LOCAL_FILE [, REMOTE_FILE ] ) Put a file on the remote server. LOCAL_FILE may be a name or a filehandle. If LOCAL_FILE is a filehandle then REMOTE_F

Re: Visual Perl in Visual Studio

2000-05-29 Thread Philip Newton
Matthew Persico wrote: > Does this mean we will FINALLY be able to drop all the PPM > crap and just invoke the Visual Studio C compile where > necessary on ANY CPAN module? Hm? You could do that all along. The sources AS used to compile their version of Perl are available, so you can build your

Re: Arrays and Hashes

2000-05-29 Thread Philip Newton
Gregory Bair wrote: > Can a hash be the value of an array element? No, but a reference to a hash can. > What comes to mind is something like > $array[1]{hashkey} = hashvalue, though this seems silly to > me. Let me guess: you didn't try it. That's how I'd do it, anyway. ${$array[1]}{hashk

RE: Arrays and Hashes

2000-05-29 Thread Zoltan Celedes
> %{$array[1]}{'Item'} = $something; Close... try ${$array[1]}{'Item'} = $something; The only way you can (safely) add a "hash" to an array (or inside another hash) is to use a hash reference. Of course Perl gives you several ways to do this :-) You declare a hash REFERENCE like this:

RE: Get program name

2000-05-29 Thread Robert Friberg
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf > Of Borkur Gudjonsson > Sent: Saturday, May 27, 2000 11:14 PM > To: Perl-Win32-Users Mailing List > Subject: Get program name > > > I create a exe file out of my script, with perl2exe, > and I would l

RE: Arrays and Hashes

2000-05-29 Thread Robert Friberg
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf > Of Gregory Bair > Sent: Monday, May 29, 2000 9:01 AM > To: Perl-Win32-Users Mailing List > Subject: Arrays and Hashes > > > Can a hash be the value of an array element? specifically, what would be > t

Re: Arrays and Hashes

2000-05-29 Thread Justin Rogers
%{$array[1]}{'Item'} = $something; You have to turn the item in $array[1] into the hash. Or reference would be the correct terminology I think. I'm only answer because its late and you probably won't get one of the gurus. But try it. - Justin Rogers, CEO DigiTec Web Consultants [COOP]

Arrays and Hashes

2000-05-29 Thread Gregory Bair
Can a hash be the value of an array element? specifically, what would be the syntax for defining values and referencing them. What comes to mind is something like $array[1]{hashkey} = hashvalue, though this seems silly to me. I'm getting all confused just trying to work it out. I've got a

Newbie, needing a few pointers for get started.

2000-05-29 Thread swift
I am new to perl and would like some advice about setting up your remote directories. Which way is best and secure, separate cgi-bin off root etc. I am running a script that works ok in IE but not Netscape I get ths error HTTP Error 405 405 Method Not Allowed The method specified in the Request