Re: message replies

2003-12-18 Thread $Bill Luebkert
Web Manager wrote: > Lee Goddard wrote: > > >>$Bill Luebkert mailto:[EMAIL PROTECTED] wrote on Thursday, December 18, > > 2003 3:02 AM: > >>| I agree - never use M$ email clients. Also a good way to pick >>| up viruses. >> >>Quite, but of course not all of use can decide what we use in our of

RE: message replies

2003-12-18 Thread Web Manager
Lee Goddard wrote: > $Bill Luebkert mailto:[EMAIL PROTECTED] wrote on Thursday, December 18, 2003 3:02 AM: > > | I agree - never use M$ email clients. Also a good way to pick > | up viruses. > > Quite, but of course not all of use can decide what we use in our offices. > Some of us would find a

Re: Capturing X.

2003-12-18 Thread $Bill Luebkert
Beckett Richard-qswi266 wrote: > Guys, > > Does anyone know how to catch the user pressing the X in the corner of the > window, like I can catch the Control-C? > > $SIG{"INT"} = \&control_c; Try: $SIG{BREAK} -- ,-/- __ _ _ $Bill LuebkertMailto:[EMAIL PROTECTED] (_/ /

RE: Capturing X.

2003-12-18 Thread Lynn. Rickards
> Beckett Richard-qswi266 > Guys, > > Does anyone know how to catch the user pressing the X in the > corner of the > window, like I can catch the Control-C? > > $SIG{"INT"} = \&control_c; > That's a function of the wm - use protocol to trap the event: $mw->protocol('WM_DELETE_WINDOW', [ sub

Re: message replies

2003-12-18 Thread Eric Edwards
> On 12/17/2003 12:59 PM, Eric Edwards wrote: > > > Hello Listers, > > In an effort to do it right, I am asking for guidance and direction. > > Would someone please reply to this message in the proper manner so I can see > > how it should be done. I promise not to top post anymore. > > Eric From:

Re: message replies

2003-12-18 Thread $Bill Luebkert
Lee Goddard wrote: > $Bill Luebkert mailto:[EMAIL PROTECTED] wrote on Thursday, December 18, 2003 3:02 AM: > > | I agree - never use M$ email clients. Also a good way to pick > | up viruses. > > Quite, but of course not all of use can decide what we use in our offices. Some of us would find a

Capturing X.

2003-12-18 Thread Beckett Richard-qswi266
Guys, Does anyone know how to catch the user pressing the X in the corner of the window, like I can catch the Control-C? $SIG{"INT"} = \&control_c; Thanks. R. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveSt

RE: SOLUTION - Problem with Win32::Console and END block.

2003-12-18 Thread Beckett Richard-qswi266
Chris suggested a simpler solution... Change 'my' to 'our' in the line: my $BUFFER = new Win32::Console(STD_OUTPUT_HANDLE); I did this, and all the print statements in my END block worked again! R. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Be

RE: proxy - LWP

2003-12-18 Thread Brož Jiří Ing. 110300
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Murali M  Subject: proxy - LWP >$proxy="12.104.160.69:8080"; >$ua=LWP::UserAgent->new; >$ua->agent("Mozilla/4.73 [en] (Windows NT 5.0; U)"); >$ua->timeout(60); >$ua->proxy(['http','ftp']=>$proxy);  > here i am trying to use

RE: configure perlscript

2003-12-18 Thread Burak Gürsoy
thanks but if there is another way to do this (a perl configuration script maybe -- that edits the required parts of the registry or whatever thing the activeperl installation program does), I'd like to know it :) -Original Message- From: Jeff Griffiths [mailto:[EMAIL PROTECTED] Sent: Thur

RE: PErl Script to start server service

2003-12-18 Thread Martin . Jones
Thanks I'll give that a go Rgds Martin ** This E-Mail is strictly confidential and intended solely for the person or organisation to whom it is addressed. It may contain privileged and confidential information and if you

SOLUTION - Problem with Win32::Console and END block.

2003-12-18 Thread Beckett Richard-qswi266
I just thought I'd share the suggested solution... With the problem below, someone suggested that I add a BEGIN block like this... BEGIN { $| =1; open(CPY, ">&STDOUT") or die "can't dup STDOUT $!"; select CPY; $| = 1; } How I think that this works is that it duplicates STDOUT, and selects the du

Exporting Registry Keys with Perl

2003-12-18 Thread Dax T. Games
Does anyone have any code to epxort a registry key with all sub-keys and values hopefully to a 'regedit' importable file. If no complete code exists does anyone have an example. Thanks, Dax ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To uns

RE: message replies

2003-12-18 Thread Lee Goddard
$Bill Luebkert mailto:[EMAIL PROTECTED] wrote on Thursday, December 18, 2003 3:02 AM: | I agree - never use M$ email clients. Also a good way to pick | up viruses. Quite, but of course not all of use can decide what we use in our offices. lee --- Outgoing mail is certified Virus Free. Checked

RE: PErl Script to start server service

2003-12-18 Thread Kraaijer Ronald
You could use something like: use Win32::Service $service = "myService" Win32::Service::StartService('',$service); cheers, Ronald -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 11:06 AM To: [EMAIL PROTECTED] Subject: PErl Script to

Re: AW: message replies

2003-12-18 Thread Rick Fitzsimmons
Dietmar Fiehn, Dr. wrote: -Ursprüngliche Nachricht- Von: $Bill Luebkert [mailto:[EMAIL PROTECTED] PS. MS Outlook2K does a terrible job of "> " quoting IMHO. Check out the awful line wrapping above in the quote from Valerie's and Eric's messages. I agree - never use M$ email clients. Al

PErl Script to start server service

2003-12-18 Thread Martin . Jones
Guys Does anyone know a way of using perl to start the server service on NT 4 I'm using the latest version of ActiveState perl through Komodo 2.5 Rgds Martin ** This E-Mail is strictly confidential and intended solely for th