vote up 2 vote down star

I want to hide an external application, ie. not the current application. I want to give the title of the application and it will be hidden. How can I do this programmatically?

flag

3 Answers

vote up 4 vote down check

In general terms, you could call FindWindow to get the HWND of the window in question, then ShowWindow with SW_HIDE to hide the window.

link|flag
You beat me to it =:) – Simon P Stevens Jun 11 at 10:26
vote up 3 vote down

You need to get a handle to the window (which you can do using FindWindow()). Then you need to call ShowWindow() and set it's shown state to hidden.

link|flag
vote up 1 vote down
ShowWindow(FindWindow(NULL, "WINDOW TITLE"), SW_HIDE);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.