How to make the program do not minimized at all minimized windows?
-
There are two ways: 1)from the main form's property window MinimizeBox to set the property false 2)on load event of the main form put these two lines of code:
this.WindowState = FormWindowState.Maximized;
this.MinimizeBox = false;Regards
Qendro
-
That's used to show the desktop; it'd be very frustrating for a user if he/she can't reach their desktop. There's also a minor difference[^] between "Minimize All" (Win-L) and "Show Desktop" (Win-D).
Bastard Programmer from Hell :suss:
-
That would be user-hostile; don't do it.
-
That's used to show the desktop; it'd be very frustrating for a user if he/she can't reach their desktop. There's also a minor difference[^] between "Minimize All" (Win-L) and "Show Desktop" (Win-D).
Bastard Programmer from Hell :suss:
Eddy Vluggen wrote:
"Minimize All" (Win-L)
Interesting: on my Win 7 Pro machine, Win-L switches me to the log-in screen where I could, potentially, switch users, and where I have to click on my current user icon to return to "normal use" mode. best, Bill
"Last year I went fishing with Salvador Dali. He was using a dotted line. He caught every other fish." Steven Wright
-
Eddy Vluggen wrote:
"Minimize All" (Win-L)
Interesting: on my Win 7 Pro machine, Win-L switches me to the log-in screen where I could, potentially, switch users, and where I have to click on my current user icon to return to "normal use" mode. best, Bill
"Last year I went fishing with Salvador Dali. He was using a dotted line. He caught every other fish." Steven Wright
BillWoodruff wrote:
Interesting: on my Win 7 Pro machine, Win-L switches me to the log-in screen where I could, potentially, switch users, and where I have to click on my current user icon to return to "normal use" mode.
Not interesting, merely a typo. Win-M does a minimize all, Win-D shows the desktop.
Bastard Programmer from Hell :suss:
-
BillWoodruff wrote:
Interesting: on my Win 7 Pro machine, Win-L switches me to the log-in screen where I could, potentially, switch users, and where I have to click on my current user icon to return to "normal use" mode.
Not interesting, merely a typo. Win-M does a minimize all, Win-D shows the desktop.
Bastard Programmer from Hell :suss:
Eddy Vluggen wrote:
merely a typo
My faith in you remains unshaken ! Win-Shift-M will restore all the Windows minimized by Win-M. And a second Win-D will also restore. All of which I gleaned from the excellent link you provided, thanks. best, Bill
"Last year I went fishing with Salvador Dali. He was using a dotted line. He caught every other fish." Steven Wright
-
Eddy Vluggen wrote:
merely a typo
My faith in you remains unshaken ! Win-Shift-M will restore all the Windows minimized by Win-M. And a second Win-D will also restore. All of which I gleaned from the excellent link you provided, thanks. best, Bill
"Last year I went fishing with Salvador Dali. He was using a dotted line. He caught every other fish." Steven Wright