[Fwd: File::Copy and eval]

2006-01-24 Thread Michael Jung
This is perl, v5.8.4 built for MSWin32-x86-multi-thread (with 3 registered patches, see perl -V for more detail) Copyright 1987-2004, Larry Wall Binary build 810 provided by ActiveState Corp. http://www.ActiveState.com ActiveState is a division of Sophos. Built Jun 1 2004 11:52:21 In this

RE: fork didn't work

2004-10-26 Thread Michael Jung
I understand that each fork under activestate runs as a thread and I understnat that there is a compiled in limit of 64 active threads. Why don’t you use Win32::Process::Create instead or fork? Hope this helps. --mikej Michael Jung -Original Message- From: [EMAIL PROTECTED] [mailto

RE: Perl threads crash perl

2004-07-30 Thread Michael Jung
There is a compiled in limit of 100 threads in Win32 - I ran into this a few weeks back. Please see this thread. http://www.perlmonks.org/index.pl?node_id=373409 --mikej -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Deighan Sent: Friday,

RE: perl Tk font question

2004-07-13 Thread Michael Jung
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 7:29 AM To: [EMAIL PROTECTED] Subject: perl Tk font question It may be simple but I can't figure how to set font in tk widget /my font is Courier New

(no subject)

2004-07-06 Thread Michael Jung
This may not be the best route... But here is how I check for a module... use strict; eval { require Net::Pcap; }; if ($@) { print WinPcap required - http://winpcap.polito.it/install/default.htm ; exit; } --mikej Michael Jung -Original Message- From: [EMAIL PROTECTED] [mailto

Win32:EventLog -Clear

2004-06-30 Thread Michael Jung
either. Regardless of the method I attempt to clear the log no errors are reported, but the log is never cleared. Can someone clue me in? --mikej Michael Jung ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http

Win32:EventLog -Clear

2004-06-30 Thread Michael Jung
to do this)... I also tried passing a valid filename on my local system as shown above which didn't work either. Regardless of the method I attempt to clear the log no errors are reported, but the log is never cleared. Can someone clue me in? --mikej Michael Jung

PARTIALLY RESOLVED: Fwd: Win32:EventLog -Clear

2004-06-30 Thread Michael Jung
The filename must not exist... I need more coffee.. Can someone though explain how to provide a NULL filename? $handle-Clear(FILENAME); The Clear() method clears the EventLog represented by $handle. If you provide a non-null FILENAME, the EventLog will be backed up into FILENAME