Skip to main content

All Questions

0 votes
0 answers
577 views

How to run Internet Explorer in background with VBA

I want to run Internet Explorer in background. I used this script and IE is opened but it's a visible window and not run in background. On Error Resume Next 'Declare a new variable or array variable ...
user14448790's user avatar
0 votes
0 answers
34 views

IE closes window and connects directed link in new window

I have been looking for a solution or cause of this issue but I couldn't find anything. My problem is that I am going to a link with vba macro and this link direct me to another link but problem is ...
Zeynel ÖZTÜRK's user avatar
0 votes
1 answer
769 views

vba Filling Internet Explorer Forms with Excel Data

Situation: I am filling fields on a website in Internet Explorer with data from Excel. It is an existing web page that the user has already navigated to, then clicks a button to add the Excel data ...
Jenn's user avatar
  • 637
0 votes
1 answer
193 views

Resume Macro after IE Crash or not respond

I need to get data from website I'm using SHDocVw.InternetExplorer and MSHTML.HTMLDocument and fetch data. I'm using set IE = Nothing and IE.Quit after fetching each records and creating new instance ...
Mahesh Bangale's user avatar
0 votes
0 answers
472 views

VBA: IE automation stops with new tab open

A link that I click on via IE automation opens a new tab. With this new tab how can I control it with out creating a new internet explorer object? If Format(IE.Document.getElementById("...
Quint's user avatar
  • 590
1 vote
3 answers
8k views

VBA: Choosing Specific Tab on Internet Explorer

I had another post regarding a different issue on the same overall problem here: Converting From Early Binding to Late Binding. I now have a new issue with my coding (which I will post a portion of it ...
user avatar
-1 votes
1 answer
441 views

Converting From Early Binding to Late Binding

Update # 2 I changed the values of the txtbox and submitbtns with a (0) (and also tried (1) as well), no changes. And I also need to note that the Button has a different name and I updated ...
user avatar
2 votes
1 answer
2k views

IE Automation - Excel VBA ... Running Into Errors After Loading Website

I have programmed VBA to interact with IE rather extensively and have started to do so again, but am coming across a weird phenomenon that I cannot seem to solve with all the research I've done. As ...
Scott Holtzman's user avatar
1 vote
2 answers
4k views

Internet Explorer 11 automation VBA Document Empty

I am just starting to learn Internet Explorer Automation using VBA and I am facing an issue. The Document object is empty which prevents me from going further than just loading a page. I have been ...
Fabien's user avatar
  • 11
0 votes
0 answers
134 views

My VBA code worked fine on IE9, but it doesn't work on IE11

I want to reset Setting on a page but click event is not fire on this Setting button. It work fine on IE9 but when I upgrade to IE11 it doesn't work. This is my code: Sub resetIEvalue() Dim ...
PAINOLAND's user avatar
0 votes
2 answers
5k views

vba can not find opening IE 11 Browser.

I have a vba code which can upload the data from an excel sheet to a website. However, the code works fine in Win7 System and IE browser 8,but it does not work on a win8 IE browser 11. Here are part ...
Lingfeng Ye's user avatar
0 votes
1 answer
2k views

ReadyState substitute for IE11 in VBA

Please, I've just bought a new pc that came with IE 11. I have a lot of codes in VBA using the While ie.Busy Or ie.ReadyState <> READYSTATE_COMPLETE: DoEvents: Wend But it seems that ...
victor's user avatar
  • 1