Read source code of Internet Explorer

  • Thread starter Thread starter Test
  • Start date Start date
T

Test

Hi everyone,

is there a possibility to get the html source code of an Internet Explorer
window that I have only the name/title of? In my case it's not possible to
use the InternetExplorer.Application object unfortunately.

Thanks for any help!

Regards Sebastian
 
One way is to use the Windows API, You would have to check the title of all
opened windows, once you have the handle of the window, then you should be
able to use the windows API to get at the document.



--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
* "One Handed Man \( OHM - Terry Burns \) said:
One way is to use the Windows API, You would have to check the title of all
opened windows, once you have the handle of the window, then you should be
able to use the windows API to get at the document.

Sure? How do you get the source code of the document shown in MSIE when
you have the window handle only?
 
Like I said, you need to use the API and put together a BHO component for
this purpose.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
* "One Handed Man \( OHM - Terry Burns \) said:
Like I said, you need to use the API and put together a BHO component for
this purpose.

OK, that's what I wanted to hear ;-).
 
Back
Top