RE: Archive::Zip funnny return status

2003-08-10 Thread wiggins
On Wed, 6 Aug 2003 11:33:18 -0500, "Dan Muey" <[EMAIL PROTECTED]> wrote: > > > > I think your pattern match will only catch a literal AZ_OK, > > > not the constant. And I'm not sure, but AZ_OK might evaluate > > > to 0. At least I think I remem

Re: input box

2003-08-10 Thread Pinku Bhatnagar
hi, There is a text entry widget in perk/tk. It is exactly similar to the input box of VB. While creating the entry widget you associate a scalar variable to it. You can then use this variable to get/set the text or value in the entry widget. HTH Pinku Bhatnagar Dan Muey wrote: Hi Howdy

setting environment variables in IIS

2003-08-10 Thread Sethi, Pradeep
Hi, How can I set up environment variables to be used in the script in IIS ? Thanks, Pradeep

Re: Global variables and a forked process

2003-08-10 Thread Steve Grazzini
On Sat, Aug 09, 2003 at 05:14:34PM -0700, Ahmed Moustafa wrote: > Steve Grazzini wrote: >> Changes made after the fork() won't be visible in the other >> process, if that's what you're wondering. > > Yes, that's exactly what I am wondering. So, is there a way to > assign values to the global varia

Re: Ok I am tired

2003-08-10 Thread david
> "Sharad Gupta" <[EMAIL PROTECTED]> wrote in message >news:[EMAIL PROTECTED] > Hi All, > > I am really tired now: > > -- > package Foo; > > use strict; > use LWP::UserAgent; > > > sub new { > return bless {},shift; > } > > > sub Foo::INC { > my ($self,$filename)

Re: Global variables and a forked process

2003-08-10 Thread Ahmed Moustafa
Steve Grazzini wrote: On Sat, Aug 09, 2003 at 05:14:34PM -0700, Ahmed Moustafa wrote: Steve Grazzini wrote: Changes made after the fork() won't be visible in the other process, if that's what you're wondering. Yes, that's exactly what I am wondering. So, is there a way to assign values to the glo

Re: DBD::Oracle not executing stored procedure properly...

2003-08-10 Thread david
Hamish Whittal wrote: > Hi all, > > I have a stored procedure that is defined as follows: > PROCEDURE Add_ComponentDetails( > p_ComponentID IN number, > p_PollingID IN number, > p_Answer IN varchar2, > p_ASNNumber IN varchar2) > > In my perl code, I exec the following: > my $plsql_par

How to replace a text in a file

2003-08-10 Thread Vinay Thombre
Hi, I am novice to Perl and learning very basic things. I want to replace a text in a file with new text. I want to do it programatically. How can I do that? I do not want to use Perl command line argumanets. Can anyone help? TIA, Vinay

Perl and Visio

2003-08-10 Thread Prichard, Jayson
Does anyone know where I can find the interfaces to Visio? I am writing a script to automate some visio drawings. Specifically, I need to know how to assign values to the Visio "Custom Properties" of an object.

Sharpening up the error handling of Mime::Lite

2003-08-10 Thread Lodewijks, Jeroen
Hi all, I use module Mime::Lite to email. All works fine but I am not happy with the error handling. The documentation (http://search.cpan.org/author/YVES/MIME-Lite-3.01/lib/MIME/Lite.pm#send) states: -- part of doc As an instance method with no arguments, sends the message by the default mecha

RE: Another reference question (hash of hash references)

2003-08-10 Thread Hanson, Rob
> Any suggestions on how I can do this? Yes. # init the hash key $hash{four} = {} unless exists $hash{four}; # store access the internal hash by following the reference "->" $hash{four}->{uid} = "uid4"; $hash{four}->{cn} = "cn4"; $hash{four}->{group} = "Group4"; Rob -Original Message

Re: Closing window in Perl/Tk

2003-08-10 Thread zentara
On Fri, 08 Aug 2003 11:07:53 +0530, [EMAIL PROTECTED] (Sachin Hegde) wrote: >Hi all, >I am writing an UI application inPerl/Tk. I have some functions which I am >supposed to run before the application closes. How do I calll this function, >say Funct(), when the user clicks on the close icon of t

smtp problem

2003-08-10 Thread awards
Hi, I found a strange problem. like the subject says i'm using Net::SMTP I don't have any error in my code. But when I'm using a server i.e mail.xxx.com Only domain @xxx.com will receive an e-mail. if I send an email at @aaa.com with the mail.xxx.com then it will not get the mail but if i change

Re: how do i list the methods connected to a object?

2003-08-10 Thread Rob Dixon
"Ovid" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > --- Peter Scott <[EMAIL PROTECTED]> wrote: > > >The problem here is that it will not print inherited or AUTOLOADed methods. > > [snip] > > > > So traverse the inheritance hierarchy and do the same thing with each class: > > > > h

Another reference question (hash of hash references)

2003-08-10 Thread Tim Musson
beginners, I am trying to build a hash of hash references. My problem is that I need to be able to add a key/value pair to the internal hashes... ,- [ Here is my test code (yes, I am working with LDAP) ] #!perl use strict; use warnings; my %hash = ( one => { uid => "uid1", cn => "c