how can i determine the X and Y coordinates of the icons on the desktop?
and how can i make all the open windows minimized?
Printable View
how can i determine the X and Y coordinates of the icons on the desktop?
and how can i make all the open windows minimized?
You can use Showwindow to minimize a window by handle, i don't remember the flag constant. To enumerate all top level windows you can use EnumWindows function, you need to pass a function handle using addresof keyword. Look up both functions at vbapi.com for details and examples