Skip to main content

All Questions

-1 votes
2 answers
1k views

How to click on a javascript button on IE 11 using VBA?

The VBA code is not responsible because it doesn't work on IE 11 even not programmatically. The button works with Chrome or Firefox but I cannot manage to use Selenium on my computer, it is throwing ...
Pierre Qui Roule's user avatar
-1 votes
1 answer
985 views

Fill Internet Explorer Pop-Up Window with Excel Data

I am filling fields with Excel data. This sub works for me on other websites. How do I make this work for a pop-up window? I have read a few other pages on this topic. I am using IE11. This is an ...
Jenn's user avatar
  • 637
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
2 answers
2k views

Excel VBA fill textbox with autocomplete in IE11

How can I fill a textbox that uses javascript to suggest available entries using Excel VBA? Filling the textbox manually, I would start typing a few letters and a list of available inputs I could ...
dynomillie's user avatar
0 votes
1 answer
260 views

Submitting form on child window

I have a vba script that automatically navigates its way through ups.com. It does just fine until it comes to a child window with a different url. In that child window is a simple form, but when the ...
Matt Cremeens's user avatar
0 votes
1 answer
1k views

Unable to upload excel in AngularJS UI Grid using SheetJS in IE11

I am trying to Upload an excel file at client side in AngularJS UI Grid using SheetJS. The code works fine in Chrome and Firefox, but on IE it gives the following error Object doesn't support property ...
AkashSharma's user avatar
0 votes
1 answer
345 views

Excel VBA to dojo - changing a drop down box

I am new here and I am trying to write a VBA Excel script to automate form input for an external website. The website uses dojo and I am using IE11. Is there a way for me to integrate excel vba to ...
jyp38's user avatar
  • 1
0 votes
1 answer
2k views

Exporting HTML To Excel in IE11 – "Access is Denied"

I am needing to export an HTML report to excel in various different browsers (preferably solely on the client). I have put numerous hours into this problem, and I have working, browser-specific ...
mhodges's user avatar
  • 11.1k
2 votes
1 answer
2k views

How to trigger a specific web page event with a vba macro

Let me start off by saying that I have VERY limited knowledge of web development, so please correct me if I'm wrong about what's going on here. What I'm trying to accomplish is to duplicate the ...
drognisep's user avatar
  • 589
0 votes
0 answers
2k views

Exporting an Excel file works in everything except IE, want to use JavaScript, pure or jQuery

Short form is that I'm trying to fix this bug in a plugin I'm using for work: https://github.com/kayalshri/tableExport.jquery.plugin/issues/4 Firefox and Chrome download Excel fine, but IE, with no ...
Janet's user avatar
  • 363
4 votes
2 answers
60k views

Javascript Excel OpenFile

I have this code: <html> <script type="text/javascript"> function test() { var Excel = new ActiveXObject("Excel.Application"); Excel.Workbook.Open("teste.xlsx"); } ...
PythonNewbie's user avatar