RE: Win32::Console.

2001-12-13 Thread John . Brooking
http://www.jas.com/shame/humor.html. > -Original Message- > From: Curtis Poe [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 13, 2001 4:10 PM > To: Etienne Marcotte; Chris Ball > Cc: Ryan Guy; [EMAIL PROTECTED] > Subject: Re: Win32::Console. > > > --- Et

Re: Win32::Console.

2001-12-13 Thread Curtis Poe
--- Etienne Marcotte <[EMAIL PROTECTED]> wrote: > Little typo in your message, I've never seen 23 bits OS...: Yes, but MS puts out a 2-bit OS :) = Senior Programmer Onsite! Technology (http://www.onsitetech.com/) "Ovid" on http://www.perlmonks.org/ __

Re: Win32::Console.

2001-12-13 Thread Chris Ball
On Thu, Dec 13, 2001 at 03:55:09PM -0500, Etienne Marcotte wrote: > Little typo in your message, I've never seen 23 bits OS...: Hah. Oh dear. :-) It was intentional, honest. Windows is so sucky that it leaks nine bits, and can only locate up to 23 bits of addressing space. It wasn't a typo a

RE: Win32::Console.

2001-12-13 Thread Dean Theophilou
Win32 Perl Programming: The Standard Extensions, 2nd Edition, Dave Roth. This book is a must for Win32 Perl. Dean Theophilou Genisar -Original Message- From: Wert, Nathaniel [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 12:31 PM To: Ryan Guy; '[EMAIL PROTECTED]' Subject:

Re: Win32::Console.

2001-12-13 Thread Etienne Marcotte
Little typo in your message, I've never seen 23 bits OS...: Chris Ball wrote: > > On Thu, Dec 13, 2001 at 03:25:06PM -0500, Ryan Guy wrote: > > If anyone knows where I can find some half way decent examples and > > explanations I would be thrilled thanks. > > The 'test.pl', 'docs/{intro,referen

Re: Win32::Console.

2001-12-13 Thread Chris Ball
On Thu, Dec 13, 2001 at 03:25:06PM -0500, Ryan Guy wrote: > If anyone knows where I can find some half way decent examples and > explanations I would be thrilled thanks. The 'test.pl', 'docs/{intro,reference}.html' and POD files in the distribution. Especially the POD, which has documentation an

RE: win32 console input problem

2001-12-12 Thread Wert, Nathaniel
ailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 3:02 PM To: [EMAIL PROTECTED] Subject: Re: win32 console input problem Try this: use Win32::Console; $con = Win32::Console->new(STD_INPUT_HANDLE); @event = $con->Input(); print "$event[0] - event type

Re: win32 console input problem

2001-12-12 Thread Herb Hall
Try this: use Win32::Console; $con = Win32::Console->new(STD_INPUT_HANDLE); @event = $con->Input(); print "$event[0] - event type: 1 for keyboard\n"; print "$event[1] - key down: TRUE if the key is being pressed, FALSE if the key is being released\n"; print "$event[2] -