in reply to Re^2: Win32 GUI new version flag issues
in thread Win32 GUI new version flag issues

If you know which tags you want, just import them at the use line: use Win32::GUI::Constants qw/WS_VSCROLL MB_OK/;

Alternatively, you can also import the compatibility tags from the older version of Win32::GUI: use Win32::GUI::Constants qw/:compatibility_win32_gui/;

Replies are listed 'Best First'.
Re^4: Win32 GUI new version flag issues
by petecm99 (Pilgrim) on Oct 01, 2010 at 17:27 UTC
    Thanks for the additional info. It's nice to have options...