in reply to Memory requirements for a Win32 GUI

If you only need to notify them then Win32::MsgBox( 'Hello World') might be enough.

  • Comment on Re: Memory requirements for a Win32 GUI

Replies are listed 'Best First'.
Re^2: Memory requirements for a Win32 GUI
by pvbcharon (Beadle) on Apr 14, 2008 at 12:57 UTC
    But for Win32::MessageBox I need to load the Win32 module... And when I'm doing that, I can use the rest of the module as well without really changing how much memory the script uses.

      Do not confuse Win32.pm with Win32::GUI! If I try a tiny script like this:

      use Win32; #use Win32::GUI; Win32::MsgBox("Hello world");
      then without the Win32::GUI Task Manager reports 2332KB and with 3832KB.