Tagged Questions
The shdocvw tag has no wiki summary.
5
votes
2answers
245 views
Any workaround to get text in an iFrame on another domain in a WebBrowser?
You will probably first think is not possible because of XSS restrictions. But I'm trying to access this content from an application that hosts a WebBrowser, not from javascript code in a site.
I ...
3
votes
4answers
85 views
Identify all open System/Special Folders
I am currently using the following to Get Path of all Open Explorer Windows:
foreach (SHDocVw.InternetExplorer j in new SHDocVw.ShellWindows()) {
if (j.Name == "Windows Explorer") {
...
3
votes
1answer
6k views
using Interop.SHDocVw.dll Where can i find this namespace/dll at?
I've done this before, I don't remember if i downloaded the DLL from off the net or something but i don't want to get a virus. I need access to this namespace so that I can have extra features that ...
2
votes
1answer
129 views
close pop-up window using shdocvw?
I used to close pop-up windows in VBA using the following code:
Dim k As New shdocvw.ShellWindows ' close menu window
Dim c As WebBrowser
For Each c In k
If c.LocationURL = ...
2
votes
1answer
172 views
Interop.SHDocVw Navigate2() method displays unwanted download box
I am writing some regression tests in WatiN and needed to make a couple POST web requests. The requests are working fine but I get an annoying dialog box asking me if I want to save the file or find a ...
2
votes
2answers
437 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
0answers
66 views
Determining when an IE window is displaying a dialog box from a desktop app
I am attempting to determine if a selected browser window is showing a dialog box. I am using the shdocvw.internetexplorer object to grab the browser and get specific elements of the browser. I am ...
1
vote
1answer
243 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
2answers
204 views
Control/Access an already open browser with vb form
Is there a way to have a desktop vb application take control of an already open browser window? For example, have it mouse click certain coordinates in the window or check if the window contains ...
1
vote
1answer
253 views
Get around running visual studio as administrator in Windows 7 to interact with Internet Explorer
I'm using SHDocVw.InternetExplorerClass to scrape a webpage. It works fine in XP, but when I try to run it in windows 7 I get an error:
The interface is unknown. (Exception from HRESULT: 0x800706B5)
...
1
vote
1answer
275 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
1answer
407 views
Error using interop.Shdocvw
I was trying to connect to web browser control but it continuously threw exception that iwebbrowser2 should implement iwebbrowser2 something like this ,then i googled and found solution to this ...
1
vote
1answer
78 views
Android: How do I retreive problematic data from a specific webpage?
I have used .NET and ShDocVw for years to grab data off webpages without any issues I couldn't overcome. This website has me beat though. It seems like such as easy task to grab the titles and other ...
1
vote
1answer
1k views
IWebBrowserApp.Navigate() How to send Post Data
I would be very glad if someone could show me a good example of how to send POST data with the Navigate Method, available through SHDocVw.IWebBrowserApp.
Considering for example.
That the page were ...
1
vote
4answers
508 views
WebBrowser control
Ok, so here's the deal -- I'm running a Windows Forms WebBrowser control from a service. I know thats a no-no, but it seems to work alright.
The only thing I'm running into a problem with is trying ...
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
0answers
101 views
COMException while accessing .NET WebBrowser (SHDocVw)
What is the reason for the following exception ?
System.Runtime.InteropServices.COMException (0x800706BA): The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
It occurs when I make a ...
0
votes
1answer
191 views
ShowWindow won't set focus or maximize
The following code will not set focus to the ie window that I need nor will it maximize it kike its supposed to
Option Explicit On
Public Class Form1
Public Declare Auto Function ShowWindow Lib ...
0
votes
2answers
155 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
2answers
100 views
how to click this javascript button?
In the middle of a webpage I am trying to log into I have the following code
<tr>
<td colspan="2" align="center"><!--mstheme--><font face="Trebuchet MS, Arial, ...
0
votes
1answer
58 views
Can't use “apply” or “call” functions more than once
I'm using the SHDocVw DLL to open and manipulate an Internet Explorer instance from C#. I need to activate the onkeyup event of several textboxes. This is the code I use:
dynamic ...
0
votes
1answer
234 views
How to send a cookie in a POST using SHDocVw.InternetExplorer.Navigate?
Problem:
In our organization we have a home grown single-sign-on app written in c#/.Net2 that has been working for years. We recently found that the app doesn’t work with Outlook Web Access 2010. A ...
0
votes
0answers
50 views
webbrowser control and resources downloaded
I want any event in web browser contorl that would raise once all the resources of a page are been donwloaded.
In my case, the page has nested iFrame so i would like to get resources download ...
0
votes
2answers
192 views
shdocvw in managed C++
I am trying to use shdocvw in a managed C++ program. I have read COM Interop using managed C++ - CodeProject. I used the instructions in How to add references to a managed Visual C++ project to create ...
0
votes
1answer
434 views
InternetExplorer being set up as __ComObject instead of SHDocVw.InternetExplorer
I'm having a problem with the InternetExplorer in SHDocVw.dll. I also have mshtml.tlb referenced (while googling, I did read 1 comment that said I should have mshtml.dll referenced, but that this ...
0
votes
0answers
213 views
Additional Headers in BeforeNavigate2 method in IE 8
i am using BeforeNavigate2 method and able to add request headers (additional headers) using Headers parameters.
void ie_BeforeNavigate2(object pDisp, ref object URL, ref object Flags, ref object ...
0
votes
1answer
97 views
Measuring Webpage Size
We have a WPF application created in .Net Framework 3.5 SP1, used for displaying various Web Application. The WPF application uses a Web Browser control to display the web pages of the various ...
0
votes
1answer
222 views
deploying a winform application using clickonce and iis fails
I'm trying to deploy a winform application with IIS and ClickOnce. I can access the publish.htm page and the install even starts when I click on the provided link.
However I get this error during the ...
0
votes
0answers
359 views
Issue with reading cookie in WPF webbrowser?
i am using DocumentComplete event of SHDocVw.DWebBrowserEvents2 api with wpf webbrowser contorl.
in above event i am trying to read cookie using below code line.
...
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
1answer
400 views
clear browser session and cookies using c#
Hi I've created a new browser object by using
InternetExplorer myie = new SHDocVw.InternetExplorer();
and I'm trying to navigate to one page some thing like
...
0
votes
2answers
822 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 ...