oaklander - you do need to include use Win32; at the top of your script. The format for Win32::MsgBox is this: Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]) - check out the perldocs at Win32.
- Moon
update: an example -
use Win32;
$msg = "Test of Box";
Win32::MsgBox($msg, 0 | MB_ICONINFORMATION, 'Just an Example');