Using SendMessage with web pages
-
How can I determine the handle of a radio box or a button on a webpage? When I tried using Spy++ it only gave me the handle of the page area and this class: 'Internet Explorer_Server'. Can anyone help?:confused: :confused:
All of the HTML input controls with the exception of SELECT are Windowless. You cannot use regular Win32 techniques to play with them. :( Rather you have to use MSHTML.
-
All of the HTML input controls with the exception of SELECT are Windowless. You cannot use regular Win32 techniques to play with them. :( Rather you have to use MSHTML.
-
If you're really good with COM a quick search of MSDN for MSHTML will bring up all you need to get started. If you aren't all is not lost. You can achieve ~90% of anything you need to do with scripting. If you explain what you're goal is i might be able to come up with a plan for achieving it.