How to disable minimize box

how to disable minimize box.
i don't how to do it.

help plz...
If you're using <iostream>, just add this to the end of your main (but before the return statement):
1
2
int PLEASEDONTQUIT;
std::cin >> PLEASEDONTQUIT;


You can name it whatever you like, but this name is quite overlap-proof.
closed account (1vRz3TCk)
XiviC 03
A bit more detail wouldn't go amiss. Minimize box on what, console windows, GUI window, what OS, etc.
Er,

You shouldn't be trying to do that.

*Unless you are writing a modal dialog window or an embedded window

It is not for a person's software to decide how it is used. UI experts will tell you, frankly, that programs that endeavor to take control away from the user get uninstalled pretty quickly. (The only exceptions are those programs that users feel are important enough to "put-up with" -- at least until a replacement can be found.)

Sorry.
+1 Duoas
Topic archived. No new replies allowed.