views:

89

answers:

1

How can I do this? I've tried IsWindowVisible() but that doesn't seem to do the job.

+2  A: 

To check whether a window is minimized, use IsIconic(HWND).

ChrisV