How to read HTML in textbox in real time with cursor on web browser?

simpleonline

Active member
Joined
Sep 13, 2011
Messages
33
Programming Experience
Beginner
How would one be able to sync the cursor on a web browser to the html placed in a richtextbox?

I am able to get the source code of a web page and put it into a rich textbox

How can I setup a caret to sync up in real time with my mouse on the web page?

Thanks
 
maybe you could use mouse events, make a function to capture the mouse and if its over "Internet Explorer" window "use the IE HANDLE to capture window then document" and use the System.NET to get the documents page contents, but ig you mean indavidual Elements of the page while the mouse is over you would need to either Parse the page source or yet again system.NET "GetElements".

Hope this helps
 
Back
Top