RE: Error in cleanup in TieRegistry

2001-05-28 Thread Herbert, Mark
I haven't seen any workarounds for this problem, but I've got a simple solution for the error message: turn warnings off before exitting. I just added a subroutine that I call in order to exit, instead of calling exit() directly: sub doexit { $^W = 0; exit shift; } That way the w

RE: Error in cleanup in TieRegistry

2001-05-25 Thread Herbert, Mark
Hi Michael, > -Original Message- > From: erskine, michael [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 25, 2001 10:22 AM > To: '[EMAIL PROTECTED]' > Subject: RE: Error in cleanup in TieRegistry > > ... > > BTW: The workaround for your

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; > print"Running Perl v