View Single Post
  #5  
Old 03-08-2004, 17:51
least
 
Posts: n/a
Make a little proggie using function EnumWindows:

BOOL EnumWindows(
WNDENUMPROC lpEnumFunc, // pointer to callback function
LPARAM lParam // application-defined value
);

This enumerates all windows on the screen, and your callback gets handle to each, so you can find and do anything you need
Reply With Quote