c# - detecting window text change with pinvoke -
Is there a way to see if the content of 'window' has changed, it was only referenced by a handle is? Like those obtained from Pinwalk fundwondo?
If you have been informed that the text has changed, then not. Some windows send notifications of changes in their original window, but you have to be in the process to stop those messages, and not all windows will also send notifications. (I guess by the fact that you are using FindWindow that you are not in-process)
If you want to get the text and want to check your ASP, GetWindowText
or SendMessage (hwnd, WM_GETTEXT, ...);
(GetWindowText is just a useful cover around a SendMessage)
Comments
Post a Comment