I know about the findwindow technique. How do I do the reverse of that? That is, knowing the handle of the desired window, how can I grab its title? What other information can I grab knowing just the handle? Thanks
WinTitle = String(255, chr(0))
GetWindowText Me.hWnd, WinTitle, 254
WinTitle = Left(WinTitle, InStr(WinTitle, Chr(0)) - 1) Good Luck
-------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.