shdocvw Questions
2
Solved
As the title says, I'm trying to maximize an internet explorer window that was created using the following command:
Set ie = New SHDocVw.InternetExplorer
Instead of:
Set ie = CreateObject("Inte...
8
Dim IE as New InternetExplorer
IE.Visible = True
IE.Navigate("http://www.google.com")
Do Until IE.Busy = False
Loop
IE.document.getElementsByTagName("Input")(3).Value = "Search Term"
IE.documen...
Torpid asked 23/4, 2012 at 15:25
1
We have an application that runs as service on windows. The service periodically checks for active Internet Explorer instances using SHDocVw.ShellWindows(). With this, we are able to capture the UR...
Writhe asked 8/2, 2016 at 18:0
1
We have a Windows Forms app that hosts a web application from http://localhost (on a port selected at runtime) in a WebBrowser control which mostly works fine. Within the webapp there is a 'help' l...
Haig asked 7/6, 2013 at 23:33
2
Solved
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...
Regen asked 21/9, 2011 at 19:29
2
Solved
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...
Pannell asked 7/9, 2011 at 16:18
1
Solved
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...
Sayed asked 23/6, 2009 at 15:25
1
© 2022 - 2024 — McMap. All rights reserved.