in reply to Disable Maximize Option

Can you show the code you're using that creates the window?

Replies are listed 'Best First'.
Re^2: Disable Maximize Option
by PilotinControl (Pilgrim) on Oct 15, 2020 at 23:16 UTC

    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

      An SSCCE would be useful.