Tagged Questions
3
votes
4answers
86 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") {
...
2
votes
1answer
131 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 = ...
1
vote
0answers
68 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
248 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
205 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
255 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
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 ...
0
votes
1answer
192 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
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 ...