If you used strict and warning, and fixed your code to avoid the first bunch of errors, then you'll get this set of errors:

c:\test>junk syntax error at c:\test\junk.pl line 34, near "$OutputHandlePtr;" Bareword "null" not allowed while "strict subs" in use at c:\test\junk +.pl line 13. Bareword "N" not allowed while "strict subs" in use at c:\test\junk.pl + line 18. Bareword "P" not allowed while "strict subs" in use at c:\test\junk.pl + line 18. Bareword "P" not allowed while "strict subs" in use at c:\test\junk.pl + line 18. Bareword "N" not allowed while "strict subs" in use at c:\test\junk.pl + line 18. Bareword "I" not allowed while "strict subs" in use at c:\test\junk.pl + line 18. Bareword "null" not allowed while "strict subs" in use at c:\test\junk +.pl line 32. Bareword "N" not allowed while "strict subs" in use at c:\test\junk.pl + line 33. Bareword "N" not allowed while "strict subs" in use at c:\test\junk.pl + line 33. Bareword "P" not allowed while "strict subs" in use at c:\test\junk.pl + line 33. Bareword "N" not allowed while "strict subs" in use at c:\test\junk.pl + line 33. Execution of c:\test\junk.pl aborted due to compilation errors.

And if you pay particular attention to the two 'Bareword "null"' messages, then you might get somewhere.

Also, it is often, but not always useful, to print $^E in a string context if the api call fails.

Update: If you are using AS perl, then take a look at the html pod for the package Win32, wher eyou will find that MessageBox() is available without using Win32::API.

Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]])

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"Too many [] have been sedated by an oppressive environment of political correctness and risk aversion."

In reply to Re: Win32::API Help by BrowserUk
in thread Win32::API Help by FFSparky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.