Sioln has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Win32::TieRegistry - Overlapped IO event message

Replies are listed 'Best First'.
Re: Win32::TieRegistry - Overlapped IO event message
by marto (Cardinal) on Jan 20, 2006 at 15:45 UTC
    Sioln,

    Please have a read at How do I post a question effectively? if you have not done so already.

    'If you're asking for help with some perl code that's giving you problems, include the code in your post'

    Please post the code in question rather than just the error message.

    Thanks

    Martin
      I've meet it in various code, thats, why I didn't put it here. Wait a little, I'll put the code.
Re: Win32::TieRegistry - Overlapped IO event message (when)
by tye (Sage) on Jan 20, 2006 at 17:37 UTC

    It often means you are looking at $^E (or some other error reporting source) when you didn't get a failure return that is documented to set this.

    $! and $^E and related error codes often contain rather random error codes except right after you've received a failure that is documented to set it to an explanation of the failure.

    - tye