push window to background
-
We know how to take window to foreground (SetForegroundWindow()) But how can I push the window to background and let the window which is under our application's window cover our application window? Row
-
We know how to take window to foreground (SetForegroundWindow()) But how can I push the window to background and let the window which is under our application's window cover our application window? Row
ROWALI wrote:
We know how to take window to foreground (SetForegroundWindow()) But how can I push the window to background and let the window which is under our application's window cover our application window?
use SetWindowPos with wndTop for the background window. Knock out 't' from can't, You can if you think you can :cool:
-
We know how to take window to foreground (SetForegroundWindow()) But how can I push the window to background and let the window which is under our application's window cover our application window? Row
Hello An idea is to use
EnumWindows()
to enumerate all top level windows, then push them all forward. -
Hello An idea is to use
EnumWindows()
to enumerate all top level windows, then push them all forward. -
We know how to take window to foreground (SetForegroundWindow()) But how can I push the window to background and let the window which is under our application's window cover our application window? Row
Why would you want to do this? If I am typing in some program and all of a sudden the windows started changing their z-order, that's not going to make me very happy.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
Why would you want to do this? If I am typing in some program and all of a sudden the windows started changing their z-order, that's not going to make me very happy.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
Basically what I want is I am copying from background window to my application few text data. WHn I want to cut the data from background window I need to switch to it I want to do it with mouse, if mouse goes to title area immediatly my background application come forward. I will copy the etxt and paste to my application. problem is I can get the effect by ShowWindow(SW_MINIMIZE) but then i can see the window going to left bottom corner visibly. which is irritating on slow machines. -- modified at 8:49 Monday 19th June, 2006