in reply to Prevent Users from Exiting Windows Script
If you are writing some appliction with Win32::GUI, then you can just turn off controlbox:
use Win32::GUI; $main=Win32::GUI::Window->new(-width => 400, -height => 200, -controlb +ox => 0); $main->Show(); Win32::GUI::Dialog();
This will show you a window without close button, minimize button or maximize button.
|
|---|