OO question

2002-07-30 Thread Nathan Rimmer
I'm starting to get into OO programming with Perl and have a question. As I understand it with OO - you create an object and then do something to it. I have a list of values in an array and I wish to do the same "something" to all of them. Do I need to create an object for each value in the arr

RE: OO question

2002-07-30 Thread Peter Eisengrein
Title: RE: OO question I think the answer is yes, you can do it all in one process. If I understand you correctly you want to know whether you can do something like this: ### BEGIN use Nathan::Rimmers::Module; my %array; my $do = new Nathan::Rimmers::Module; my $result = $do->something(%array

Re - Preventing Browser Stop from killing script

2002-07-30 Thread Steve Keith - Baselines
Hello - I believe that when a person presses the STOP button, or exits a browser session in any way, the running process is killed. If a script is being run that generates that web page, then it will abort somewhere in the middle. I also believe that by using SIG and/or eval, I could have the p

RE: OO question

2002-07-30 Thread Joe Schell
> -Original Message- > From: Behalf Of Nathan Rimmer > > > I'm starting to get into OO programming with Perl and > have a question. > > As I understand it with OO - you create an object and > then do something to it. > The definition of a object is data and behavior that affects that da

RE: OO question

2002-07-30 Thread Lee Goddard
> > I'm starting to get into OO programming with Perl and > > have a question. > > > > As I understand it with OO - you create an object and > > then do something to it. > > > > I have a list of values in an array and I wish to do > > the same "something" to all of them. > > > > Do I need to crea

Problems with Term::ReadLine::Perl / Term::ReadkKey

2002-07-30 Thread Tom Schmit
I installed Term::ReadLine::Perl and Term::ReadkKey but the line editing, history, and completion are not working. I get the following console output when I run the test program, the debugger, Alak, or anything that uses these modules. Has anyone else gotten them working? Any special tricks

Re: OO question

2002-07-30 Thread Carl Jolley
On Tue, 30 Jul 2002, [iso-8859-1] Nathan Rimmer wrote: > I'm starting to get into OO programming with Perl and > have a question. > > As I understand it with OO - you create an object and > then do something to it. > > I have a list of values in an array and I wish to do > the same "something" to

Re: Re - Preventing Browser Stop from killing script

2002-07-30 Thread Carl Jolley
On Tue, 30 Jul 2002, Steve Keith - Baselines wrote: > Hello - > > I believe that when a person presses the STOP button, or exits a browser > session in any way, the running process is killed. If a script is being run > that generates that web page, then it will abort somewhere in the middle. > >

Re: Preventing Browser Stop from killing script

2002-07-30 Thread Steve Keith - Baselines
Thanks Carl - this will help me out, and I think it will be fairly easy to implement. I usually queue within the program all database updates in memory, then commit them taking the smallest possible slice of time. Let me ask you if this sounds reasonable: Instead of doing the commit mentioned a

Re: Preventing Browser Stop from killing script

2002-07-30 Thread Carl Jolley
On Tue, 30 Jul 2002, Steve Keith - Baselines wrote: > Thanks Carl - this will help me out, and I think it will be fairly easy to > implement. > > I usually queue within the program all database updates in memory, then > commit them taking the smallest possible slice of time. > > Let me ask you if

later version of oleaut32.dll causes Perl to page fault

2002-07-30 Thread Michael D. Smith
If anyone starts getting page faults while running Perl (mine is Build 633 but I assume that matters little as this is actually a Windows problem) check the date on C:\windows\system\oleaut32.dll. There is a new version that's bad. Have you installed anything lately:) I wish I could tell you

passing control characters in text to word

2002-07-30 Thread Norris, Joseph
Group, Here is what I have: I am using perl to extract data from mysql format and pass it word document that has a macro that makes it all nice and pretty. I have certain lines of the data that I need to make bold. I know that in word I can do a ctrl-b before what I want to be bold and after t

maintaining file dates when using Net::FTP

2002-07-30 Thread Paul Decker
I've been doing some FTPs using the Net::FTP module, and the dates on the files are being reset to the current date. I'd like to keep the creation date from the server. How do I do that? Thanks pd ___ Perl-Win32-Users mailing list [EMAIL PROTECTED]

Re: maintaining file dates when using Net::FTP

2002-07-30 Thread $Bill Luebkert
Paul Decker wrote: > I've been doing some FTPs using the Net::FTP module, and the dates on > the files are being reset to the current date. I'd like to keep the > creation date from the server. How do I do that? You might be able to use the utime command via the FTP site command. Probably mor

best way to set file attributes in Win32 env ...

2002-07-30 Thread Lawrence Lordanich \(x11486\)
Would anybody out there be able to tell me the best way to work with file attributes under Win32? Thanks, Lawrence. Lawrence Lordanich   Tel:   +1 858-651-1486 Qualcomm Inc. (E-140F) Fax:   +1 858-845-8222 4875 Eastgate Mall   Email:   [EMAIL PROTECTED]

Re: best way to set file attributes in Win32 env ...

2002-07-30 Thread Sisyphus
- Original Message - From: "Lawrence Lordanich (x11486)" <[EMAIL PROTECTED]> To: "perl win32 users" <[EMAIL PROTECTED]> Sent: Wednesday, July 31, 2002 10:56 AM Subject: best way to set file attributes in Win32 env ... > Would anybody out there be able to tell me the best way to work wit