I\'m trying to find if a window with specific has been open by a Process. That process spawns multiple windows, and I need to check them all.
I have no trouble findi
Rather than enumerating processes and finding the window, I'd enumerate the windows (using EnumWindows) and find the process (using GetGuiThreadInfo).