in reply to Re: Memory requirements for a Win32 GUI
in thread Memory requirements for a Win32 GUI

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.
  • Comment on Re^2: Memory requirements for a Win32 GUI

Replies are listed 'Best First'.
Re^3: Memory requirements for a Win32 GUI
by Jenda (Abbot) on Apr 14, 2008 at 14:28 UTC

    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.