Link to home
Start Free TrialLog in
Avatar of Jambyte
JambyteFlag for United States of America

asked on

Minimize or hide window

How can i Minimize or Hide a window that has nothing to do with my app?
Avatar of csalves
csalves

You have to Get The Hwd of the window (You van use the API) and after that you can minimize the window.

regards,
Avatar of Jambyte

ASKER

can you explain in detail i will up the points
Use findwindow to find the hwnd of the window based on the caption and class of the window. Use a utility like spy32 to find the class of a window
now call ShowWindow with the hwnd and the mode
The code below should be placed into a module

Public Const SW_MAXIMIZE = 3
Public Const SW_MINIMIZE = 6
Public Const SW_NORMAL = 1
Public Const SW_RESTORE = 9
Public Const SW_SHOW = 5
Public Const SW_SHOWMAXIMIZED = 3
Public Const SW_SHOWMINIMIZED = 2
Public Const SW_SHOWDEFAULT = 10
Public Const SW_SHOWMINNOACTIVE = 7
Public Const SW_SHOWNA = 8
Public Const SW_SHOWNOACTIVATE = 4
Public Const SW_SHOWNORMAL = 1
Declare Function ShowWindow Lib "user32" Alias "ShowWindow" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Avatar of Jambyte

ASKER

That works for most windows but not this one for some reson. is there any other ways to hide or minimize a window?
Does the window respond to minimize all. <Windows-Key M>
Avatar of Jambyte

ASKER

Mirkwood, no it doesn't.
Then most likely you cannot minimize it.
What you can do maybe is hide using ShowWindow
SW_HIDE.
public Const SW_HIDE = 0

You might even close or destroy it using SendMessage and WM_CLOSE or WM_DESTROY.
You can maybe move the window outside the visible screen area using MoveWindow.

Avatar of Jambyte

ASKER

Mirkwood answer this question and i'll give u the points. Thank you!
ASKER CERTIFIED SOLUTION
Avatar of Mirkwood
Mirkwood

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial