how to FindWindowEx Without windowTitle?
my code:
H = FindWindowEx(Hwnd, 0, "TextB", "windowTitle")
windowTitle is changed evrey second, how i get the handle without the windowTitle?.
other option:
get the title by classname
H = FindWindowEx(Hwnd, 0, "TextB", GetTitleByClassname(Hwnd,"TextB"))
EnumWindowsto enumerate all top level windows.GetWindowThreadProcessIdfor each top level window to check whether or not that window belongs to the target process.EnumChildWindowsto enumerate all of its children.If you know the hierarchy, or the window class name, then you should be able to identify which of the children is you target window.