RE: Find Grep

2001-06-20 Thread erskine, michael
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Richard A. Evans Sent: Thursday, June 14, 2001 6:49 PM To: Sidwell, Josh; '[EMAIL PROTECTED]' Subject: RE: Find Grep I believe this snippet of code does what you ask. It finds all

RE: My first module - a registry-stored Most-Recently-Used list - - please don't laugh!

2001-06-15 Thread erskine, michael
-Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 14/06/01 18:25 Subject: RE: My first module - a registry-stored Most-Recently-Used list - - please don't laugh! The attachment is just a template generated from h2xs. Where's the beef? ARGGGH!

RE: Wildcard matching of hash keys

2001-06-08 Thread erskine, michael
-Original Message- From: Martin Moss [mailto:[EMAIL PROTECTED]] Sent: 08 June 2001 15:15 To: [EMAIL PROTECTED] Subject: Wildcard matching of hash keys Has anybody done any work with wildcard matching of hash keys? along the lines of my $pattern=*red*; if

RE: Wildcard matching of hash keys

2001-06-08 Thread erskine, michael
-Original Message- From: Rubinow, Larry [mailto:[EMAIL PROTECTED]] Sent: 08 June 2001 16:07 To: 'erskine, michael'; '[EMAIL PROTECTED]' Subject: RE: Wildcard matching of hash keys Well, sure ... but why not my @hits = grep /red/, keys( %hash ); Ouch! I was stumbling my

RE: Regex Question: splitting at a point unless part of a quoted substring

2001-06-07 Thread erskine, michael
-Original Message- From: Lee Goddard [mailto:[EMAIL PROTECTED]] Sent: 07 June 2001 11:14 To: Perl_Users Subject: Regex Question: splitting at a point unless part of a quoted substring I need to split a string at all full-stops '.' unless they are part of a sub-string within

RE: Standalone RegEx tester

2001-06-01 Thread erskine, michael
-Original Message- From: rotaiv [mailto:[EMAIL PROTECTED]] Sent: 01 June 2001 14:58 To: [EMAIL PROTECTED] Subject: Standalone RegEx tester Does anyone know of a GUI RegEx tester that is a standalone product and is not bundled with another product such as Komodo or OptiPerl?

RE: Error in cleanup in TieRegistry

2001-05-25 Thread erskine, michael
-Original Message- From: Herbert, Mark [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 18:13 To: 'Perl-Win32-Users' Subject: Error in cleanup in TieRegistry Using Perl v5.6.1 build 626, run the following 3 line program: #!perl -w use Win32::TieRegistry; printRunning Perl

RE: Non-blocking sockets are impossible on win32?

2001-03-28 Thread erskine, michael
-Original Message- From: Trever Furnish [mailto:[EMAIL PROTECTED]] Sent: 27 March 2001 14:57 To: Perl-win32 list Subject: Non-blocking sockets are impossible on win32? Ok, I'll go ahead and risk looking like an idiot, in the hopes of getting someone to enlighten me: I've looked

RE: icon title bar

2001-02-06 Thread erskine, michael
-Original Message- From: Carlo [mailto:[EMAIL PROTECTED]] Sent: 06 February 2001 10:42 To: [EMAIL PROTECTED] Subject: icon title bar Is it possible to replace the Tk icon with my own so that mine shows up in the title bar? Use the MainWindow-Icon() method thus... (code follows

RE: icon title bar

2001-02-06 Thread erskine, michael
NB: the lack of transparency is a known issue - what I usually do is choose an appropriate non-transparent icon. Michael Erskine (MSEmtd) mailto:[EMAIL PROTECTED] JAPH ___ Perl-Win32-Users mailing list [EMAIL PROTECTED]

RE: process output pipe autoflush

2000-12-06 Thread erskine, michael
Everybody, all of the issues being discussed here are fully explained in the attatched link. I repeat myself... You should read M-J. Dominus's excellent Perl Journal article, "Suffering from Buffering?". This will give you all the answers you need.

RE: process output pipe autoflush

2000-12-05 Thread erskine, michael
-Original Message- From: Mark Zvolanek [mailto:[EMAIL PROTECTED]] Sent: 05 December 2000 03:48 To: '[EMAIL PROTECTED]' Cc: Mark Zvolanek Subject: process output pipe autoflush I have a problem with autoflush. Platform is Windows NT 4 / sp6. Mark, (in fact everyone!) You should

RE: No love from PPM

2000-11-29 Thread erskine, michael
-Original Message- From: Michael Chock [mailto:[EMAIL PROTECTED]] Sent: 28 November 2000 17:58 To: [EMAIL PROTECTED] Subject: RE: No love from PPM I've tried this before with various other apps. The firewall is apparently some proprietary Microsoft thing, and, like I say, the

RE: FCNTL

2000-11-28 Thread erskine, michael
-Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED]] Sent: 28 November 2000 04:23 To: Raymond Forbes Cc: perl-win32-users Subject: Re: FCNTL Bill, your select call ensures that the sysread doesn't encounter a block anyway i.e. your code is "avoids-blocking" rather

RE: IO::Socket - errors from auto bind and listen when new()

2000-11-24 Thread erskine, michael
Aha! When run on my local Unix box I get... After $l1, $l1-error() = '0' and $! = ''. $l1-sockport() = '2070'. IO::Socket::INET: Address already in use at blockedport.pl line 18 Can't call method "error" on an undefined value at blockedport.pl line 24. So it is a windows implimentation of

RE: IO::Socket - errors from auto bind and listen when new()

2000-11-24 Thread erskine, michael
-Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED]] Sent: 24 November 2000 12:53 To: erskine, michael Cc: '[EMAIL PROTECTED]' Subject: Re: IO::Socket - errors from auto bind and listen when new() If you have a C compiler, try writing it in C on Windoze. If it fails

RE: Releasing Memory used by an array

2000-11-16 Thread erskine, michael
-Original Message- From: Rogers, John [mailto:[EMAIL PROTECTED]] Sent: 16 November 2000 07:48 To: [EMAIL PROTECTED] Subject: Releasing Memory used by an array How does one free memory used by an array when ones finished with it ? I read a CSV file (5 Mb) into an array, mess around

RE: Executing background process on NT

2000-11-16 Thread erskine, michael
-Original Message- From: John Dickens [mailto:[EMAIL PROTECTED]] Sent: 16 November 2000 13:49 To: [EMAIL PROTECTED] Subject: Executing background process on NT Now tested code... #! perl -w use strict; $| = 1; print "starting things...\n"; system( 'start', "explorer /e,c:\temp"

RE: Installing C-Referencing Modules

2000-11-13 Thread erskine, michael
-Original Message- From: Brad W. Galiette [mailto:[EMAIL PROTECTED]] Sent: 12 November 2000 22:39 To: [EMAIL PROTECTED] Subject: Installing C-Referencing Modules I have been attempting to install two modules which utilize C code: the DBI and GD modules (both of which are

RE: Installing C-Referencing Modules

2000-11-13 Thread erskine, michael
tongue-so-firmly-in-cheek-that-I-can-hardly-speak Are you by any chance using a previous version of GD to avoid the Unisys patent on the LZW compression algorithm, which is used in fully compressed GIF images? You evil individual! I shall not tolerate such illegal activities on this law-abiding

RE: Getting modules

2000-11-06 Thread erskine, michael
-Original Message- From: Christopher Hahn [mailto:[EMAIL PROTECTED]] Sent: 04 November 2000 21:09 To: Perl-Win32-Users (E-mail) Subject: Getting modules If I find a module list in ppm, the Perl Package Manager, then I can just install it from there. If however I do not see it

RE: Getting modules

2000-11-06 Thread erskine, michael
-Original Message- From: barons [mailto:[EMAIL PROTECTED]] Sent: 06 November 2000 12:50 To: [EMAIL PROTECTED] Subject: Getting modules Is there a repository where I can use ppm to get HTML::Template and HTML::Pager HTML::Template is available as PPM package from the

RE: Insatlling module

2000-11-06 Thread erskine, michael
-Original Message- From: barons [mailto:[EMAIL PROTECTED]] Sent: 06 November 2000 14:47 To: [EMAIL PROTECTED] Subject: Insatlling module I downloaded the HTML::Pager module from cpan. I have a zip on my desktop. How do I install it? I used to installing with ppm. OK, you

RE: Help, fileevent (Tk) fails in NT for sockets

2000-11-06 Thread erskine, michael
-Original Message- From: MACKENZIE,IAN (A-Scotland,ex1) [mailto:[EMAIL PROTECTED]] Sent: 06 November 2000 12:53 To: '[EMAIL PROTECTED]' Subject: Help, fileevent (Tk) fails in NT for sockets I have a PerlTk program that uses sockets with the fileevent set to call the callback sub

RE: hash of..hashes...

2000-10-31 Thread erskine, michael
-Original Message- From: bruno stefanutti [mailto:[EMAIL PROTECTED]] Sent: 31 October 2000 14:19 To: '[EMAIL PROTECTED]' Subject: hash of..hashes... See this excellent article, "Understand References Today - © Copyright 1998 The Perl Journal."...

RE: John Giordano, Ron Riley, etc. (ASCII PLS!)

2000-10-26 Thread erskine, michael
-Original Message- From: Martin Moss [mailto:[EMAIL PROTECTED]] Sent: 26 October 2000 16:01 To: [EMAIL PROTECTED] Subject: RE: John Giordano, Ron Riley, etc. (ASCII PLS!) Everyone, I'm curious to other people's viewpoints regarding the html email's issue. My viewpoint:

RE: John Giordano, Ron Riley, etc. (ASCII PLS!)

2000-10-26 Thread erskine, michael
-Original Message- From: Joe Schell [mailto:[EMAIL PROTECTED]] Sent: 26 October 2000 16:50 To: erskine, michael; '[EMAIL PROTECTED]' Subject: RE: John Giordano, Ron Riley, etc. (ASCII PLS!) - 8 snip --- I *can* receive any old crap - I just

RE: help me with perl TK!!

2000-10-05 Thread erskine, michael
-Original Message- From: Fabio Quintao [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 04, 2000 3:24 AM To: [EMAIL PROTECTED] Subject: help me with perl TK!! Hi all!! i have some questions that is very easy for most of you people on the listwell i'm trying to