Re: Classes as modules?

2006-01-09 Thread DZ-Jay
On Jan 7, 2006, at 03:49, Lyle Kopnicky wrote: Doesn't that just let me import the methods of the class into my own namespace, from another file? That would be weird - they're supposed to be methods of a class. They belong in the class' namespace, not mine. They won't be imported unless y

RE: remote ODBC problem

2006-01-09 Thread Hsu, David
Yes. It's no problem if the Access DB is on the server itself and I create an ODBC connection to it. David -Original Message- From: Ken Barker [mailto:[EMAIL PROTECTED] Sent: Friday, January 06, 2006 6:06 PM To: Hsu, David; perl-win32-users@listserv.ActiveState.com Subject: Re: remote

Re: remote ODBC problem

2006-01-09 Thread Luke Bakken
Your program must have access to the Access DB files themselves for the ODBC connection to work, that is why your process works if the DB is on the server itself. You'll have to make the files available via some sort of file-sharing - NFS or Windows file sharing. On 1/9/06, Hsu, David <[EMAIL PRO

Simon YEE/NYP/SINGOV is out of the office.

2006-01-09 Thread Simon YEE
I will be out of the office from 09/01/2006 to 21/01/2006. Thank you for the email. I shall respond as soon as I get back to the office. Regards. ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listse

FTP with SSL

2006-01-09 Thread Terry Vaughn
Howdy all, Can anyone comment on the performance of Net::FTPSSL or recommend a module for performing FTP through an SSL connection? Terry E. Vaughn Phone: 843-841- Cell: 843-319-0481 ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.Ac

GD graph title line break

2006-01-09 Thread Mark Zvolanek
Hi, How do I add new line to the gd graph title? I tried "\n", this did not work. Thanks Mark ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: path names with spaces in them

2006-01-09 Thread Jan Dubois
On Mon, 09 Jan 2006, Spencer_Lists wrote: > I am trying to create an array with all of the files in a folder so > that I can do various things with them. I have no problem unless the > path contains space characters such as "documents and settings" I have > written TK applications that use dirtree

Re: path names with spaces in them

2006-01-09 Thread Chris Wagner
At 05:51 PM 1/9/2006 -0800, Lists wrote: >@files = <$path/*>; I would do: @files = glob "$path/*"; foreach $file (@files) { do_something; } -- REMEMBER THE WORLD TRADE CENTER ---=< WTC 911 >=-- "...ne cede malis" 0100 ___ Perl-

Re: path names with spaces in them

2006-01-09 Thread $Bill Luebkert
Spencer_Lists wrote: > Greetings , > > I am trying to create an array with all of the files in a folder so > that I can do various things with them. I have no problem unless the > path contains space characters such as "documents and settings" I have > written TK applications that use dirtree and