in reply to Re: Disable Maximize Option
in thread Disable Maximize Option

My code to disable the close button and maximize screen on startup is below:

$SIG{INT}= 'IGNORE'; SetCloseButton(0); ShowConsoleWindow(SW_MAXIMIZE);

I am using the Win32::Console module. Thanks again! - Scott

Replies are listed 'Best First'.
Re^3: Disable Maximize Option
by swl (Prior) on Oct 16, 2020 at 01:52 UTC

    An SSCCE would be useful.