Tagged Questions

2
votes
2answers
438 views

System.InvalidCastException: Specified cast is not valid

Automation using WatiN is being carried out. Using couple of simultaneous threads to test the application. Few threads are failed and log report/stack trace says the following. ...
2
votes
1answer
94 views

IE “per browser” explorer bar

Is there a way to create a "per-browser" explorer bar in IE, that means an explorer bar common for all open tabs? The explorer bars created following MS guidelines are "per-tab", meaning that a new ...
2
votes
2answers
1k views

How do I get SHDocVw.InternetExplorer to reuse the same window in Vista like it does in XP?

I am working on a program that uses IE to display its help pages. I am using C# in Visual Studio 2008 compiling to .Net Framework 2.0 In Windows XP everything works as expected. In Vista every time I ...
1
vote
1answer
251 views

SHDocVw.InternetExplorer In shellWindows returning too many objects

The following line of code return several InternetExplorer objects even though I have only one browser window open (no tabs) and only one iexplore.exe process running. How do I only get the open ...
1
vote
1answer
277 views

Retrieving the “highest level frame” from SHDocVw WebBrowser control

The documentation for the DocumentComplete event mentions near the end: In the loading process, the highest level frame, which is not necessarily the top-level frame, fires the final ...
1
vote
2answers
2k views

c# using SHDocVw.InternetExplorer. How can I find the URL of the last link clicked? Or the most recent get request URL?

I am accessing the SHDocVw.InternetExplorer from the SHDocVw.ShellWindowsClass(). I can see the page that the browser instance is currently on (the LocationURL property), but what I really need is ...
0
votes
2answers
156 views

Active tab ignored by InternetExplorer COM object for IE 8

This is web single sign on code that runs on a .net 3.5 winform. The code runs fine for ie6 or ie8 as long as ie8 only has one tab open. The problem is that if the user opens a new tab (tab 2,3,etc.) ...
0
votes
0answers
346 views

Rendering the DOM from MSHTML/SHDocVw WebBrowser control

Is there a way to force a WebBrowser object to repaint the current state of the DOM to the screen? For example, if I have a bit of MSHTML code like: IHTMLElement element = ...
0
votes
2answers
824 views

SHDocVw.WebBrowserClass register to refresh event

is there a way to know when the user perform refresh to the page using the SHDocVw.WebBrowserClass of ie using C#
0
votes
2answers
941 views

Using WatiN, how can I access the head part of the page, specifically the meta tags?

WatIn provides great functionality for programmatic access to the displayed parts of a Web page. I want to access the head part of the page, spedifically the META tags. Watin allows me access to the ...
0
votes
3answers
2k views

IE Automation Book or Resource?? using MSHTML/ShDocVw VB.Net

Can anyone recommend a book or a website that explains Internet Explorer Automation using VB.NET? I understand that mshtml and ShDocVw.dll can do this, but I need a resource that will explain it to ...