I'd like to know how to access another process' main window (if it exists) and get information like screen location and size, and whether it's visible at the moment. Is something like that possible?
Basically I want to create an application that will allow me to monitor these other windows and take screenshots of them (just the window, not the whole screen) through a single application. To do this I need a list of running processes that have main windows. Can it be done?
As a side note, I already know how to get information about running processes, by using System.Diagnost ics and making a Process array with Process.GetProc esses(), I just need to know how to access those process' windows.
Basically I want to create an application that will allow me to monitor these other windows and take screenshots of them (just the window, not the whole screen) through a single application. To do this I need a list of running processes that have main windows. Can it be done?
As a side note, I already know how to get information about running processes, by using System.Diagnost ics and making a Process array with Process.GetProc esses(), I just need to know how to access those process' windows.
Comment