Re: Storing an OBJECT (like an SMTP object) in the Session or Application Object with ASP

2001-01-24 Thread Ron Grabowski
> Not sure if this is the appropriate list or not, but I'd like to know > if I can store an SMTP object (or a connection object, for example) in > the Session or Application object via PERl in ASP. Any ideas? Storing an ADODB.Connection object in an an application variables is a BadThing. ADO su

Re: newbie

2001-01-24 Thread Ron Grabowski
> I have searched and searched. C:\>ppm install Win32-File should do it too. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Re: SQL-Problem - UPPER()

2001-01-24 Thread Joseph Youngquist
Hey Johannes, I've bumped into similar issues with the 'Prepare' statement in PERL with mySQL. I've started to use the 'Do($statement)' insted. Try: $Statement = "SELECT * FROM gbook WHERE notes LIKE '%$in{'searchValue'}%' OR keywords LIKE '%$in{'searchValue'}%' "

RE: newbie

2001-01-24 Thread Tutwiler, Coral
Thanks!! I found it. Was searching for win32-file. Coral -Original Message- From: Schiza, Apostolia (ISS Atlanta) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 11:14 AM To: 'Tutwiler, Coral'; Perl List Group Subject: RE: newbie check CPAN http://theoryx5.uwinnipeg.ca

RE: newbie

2001-01-24 Thread Schiza, Apostolia (ISS Atlanta)
check CPAN http://theoryx5.uwinnipeg.ca/CPAN/data/libwin32/File/File.html -Original Message- From: Tutwiler, Coral [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 2:14 PM To: Perl List Group Subject: newbie Here is a real newbie question!! I have searched and searched. wh

newbie

2001-01-24 Thread Tutwiler, Coral
Here is a real newbie question!! I have searched and searched. where do I get win32::File module? I bought the cd for Active Perl 5.6. >From the package manager, PPM> query I don't see win32-file listed? I am so new to this it hurts! :-) Coral ___

Connecting to LDAP over SSL

2001-01-24 Thread Douglas Gray Stephens
Hi, I am trying to connect to an LDAP server over SSL (i.e. port 636). I looked at perldap (v1.4) and perl-ldap (v 0.22), and both hint that they can connect to an LDAP over SSL. However perldap appears to want to use a local certificate for client authenitcation, while is should be possible t

Problem with Custom Excel chart using WIN32::OLE

2001-01-24 Thread Selby, Jim
> I'm trying to create a custom excel chart - but no matter what I do I > can't seem to get it to work. It produces a line chart, but not the > "Lines on 2 axes" chart I'm looking for. I'm trying to use the > ApplyCustomType that I produced in the excel macro - but it doesn't work. > Any help

RE: Module for getting data from MS spreadsheet

2001-01-24 Thread Carl Campbell
Forgive me if I misunderstood your plea but, isn't Win32::OLE good enough? I use _all_the_time_, for tasks such as the one you describe. The company I work for, receives data in various spreadsheets (Lotus 123, MS Excel) and, various scripts using this module, extracts the data and posts them to

SQL-Problem - UPPER()

2001-01-24 Thread Gamperl Johannes
Hello List, if a problem with this sql-stement (i use DBI and the CSV-Modul) : $sql = "SELECT * FROM gbook WHERE notes LIKE '%$in{'searchValue'}%' OR keywords LIKE '%$in{'searchValue'}%'"; i would have a case sensive search, so when i use the UPPER() command i get an error: Parse er

Re: PerlApp? - was - Re: including perl w/a product distribution

2001-01-24 Thread Michael V. Schaefer
Jan Dubois wrote: > > > > >Anyone have experience w/PerlApp? There is no problem > >w/distributing a .exe created w/PerlApp is there?.. > > No, you are free to redistribute freestanding PerlApp application in any > way you want. > are there any known limitations w/PerlApp? i.e. can i use it

Re: eRRor message / LWP (User)Agent

2001-01-24 Thread Yeoh Yiu
That looks like a standard method for getting code. except for setting the browsername. I think it's $ua->agent('IE/4.0'); not UserAgent => 'IE/4.0' Tested against http://omor.com/perl/env.cgi YY "$Bill Luebkert" <[EMAIL PROTECTED]> writes: > use strict; > use diagnostics; > use LWP::User

Module for getting data from MS spreadsheet

2001-01-24 Thread Ted S.
Hi everybody! I'm looking at some point in the not-too-distant future into slightly redoing the way I configure my spreadsheet so that I can use a Perl module for getting the data I want from it. Basically, all I'm looking for at this point is a module where I can set up a foreach loop, hav

Storing an OBJECT (like an SMTP object) in the Session or Application Object with ASP

2001-01-24 Thread Joe Devine
Not sure if this is the appropriate list or not, but I'd like to know if I can store an SMTP object (or a connection object, for example) in the Session or Application object via PERl in ASP. Any ideas? Thanks in advance! Joe Devine ___ Perl-Win32-Us

RE: Attaching to Lotus Notes e-mail cluster

2001-01-24 Thread Martin Moss
Hi guys, >From my experince with Notes Mail messages and perl processing, it's a right sod of a thing to do. ESPECIALLY because Notes likes to allow spaces in hostnames However I don't think you should have any problems attaching to your notes mail server through SMTP, but you must use the h

RE: Please Help!

2001-01-24 Thread Andy Jennings
Just a couple of things to add to what went before... The best way to check your code when first written is to run with the -w switch and/or 'use strict'. perl -w myscript.pl Activestate's builds of Perl will add file associations for .pl and modify the search path if this is selected durin