internet-explorer

Hello World Internet explorer extension (add-on)

时光毁灭记忆、已成空白 提交于 2020-08-08 13:33:22
问题 After I developed chrome extension I want to develop my first Intenet Explorer 11 addon, I wrote a code based on this answer. When I run the project it looks like I was succeded to create a add-on: Under Settings-->Manage add-ons I can see my add-on: But how do I show "Hello world" message (I only want to test that the my extension really work even a console.log message) What I did: I opened a class library project (.NET Framework 4.6.1) Added reference to mshtml and to SHDocVw and to System

css Works fine with Firefox/Chrome but not with IE

流过昼夜 提交于 2020-08-08 12:32:05
问题 I have this HTML and css and works fine in chrome/firefox but on IE the header layout is over place and sub menu is not displayed on hover, can you help please: <html> <head> <title>title</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="viewport" content="width=1024" /> <meta name="description" content="" /> <meta name="robots" content="all" /> <link href="images/favicon.ico" type="image/x-icon" rel="icon" /><link href="images/favicon.ico" type="image

Determining if HTML Button is Disabled in IE

若如初见. 提交于 2020-08-04 14:44:33
问题 I'm doing some VBA recently for work and I need to check in a webpage to click a button if is enable and don't click if is disabled. BUT! I don't know how to make VBA check the disabled button. Here is the button code: <input name="formAction:proxima" title=">" disabled="disabled" class="button" id="FormAction:proxima" type="submite" value=">"> I tried some If, but didn't work Set nxt = IE.document.getElementById("formAction:proxima") If nxt Is Nothing Then IE.Quit Else nxt.Click End If 回答1:

URL fragment removed by IE after 302 login redirect

馋奶兔 提交于 2020-07-31 03:43:31
问题 We use SiteMinder authentication in our application. If app user tries to navigate to a particular page https://ourapp.com/myapp/#/pending/requests in our app via direct URL or via bookmarked URL, SiteMinder will redirect to a login page via 302 redirect similar to http://ourapp.com/login?redirect=https%3A%2F%2Fourapp.com%2Fmyapp%2F#/pending/requests asking for user to enter credential in a login form . After successful authentication, user should be redirected to our app and land on the

Angular 6.x not working in IE 11 - Error: Invalid argument

寵の児 提交于 2020-07-23 05:05:24
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Angular 6.x not working in IE 11 - Error: Invalid argument

自古美人都是妖i 提交于 2020-07-23 05:05:07
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Angular 6.x not working in IE 11 - Error: Invalid argument

自闭症网瘾萝莉.ら 提交于 2020-07-23 05:03:13
问题 I have an Angular 6.x app running perfectly in Chrome. The problem is when trying to run it in IE 11, I'm getting the error: Error: Invalid argument. at DefaultDomRenderer2.prototype.setProperty... Already tried all answers in StackOverflow that I could find with no help. I'm listing theme here so you guys won't try them as answers: Added all polyfills needed for IE but still having the same problem. Added in head tag: <meta http-equiv="X-UA-Compatible" content="IE=11"> Thank you for helping.

Angular 8 using async pipe for Internet Explorer 11

℡╲_俬逩灬. 提交于 2020-07-22 18:32:05
问题 I am using *ngIf with async pipe to show and hide HTML elements. It works on Google Chrome or Firefox. But it doesn't work on Internet Explorer, how can I make it work on IE? Here is the source code: https://stackblitz.com/edit/angular-nbxpyp 回答1: It seems that the project you provide can work well in IE 11. It shows "Successfull Message" in all browsers. Is there any error in console when it doesn't work in IE? Have you followed the steps of supporting Angular 8 in IE 11? You need to follow

Unable to enter Username and password in webpage using VBA

爷,独闯天下 提交于 2020-07-22 18:08:48
问题 I am trying to login to a webpage using VBA, but I am unable to get it done. The issue is after the username and password punched, when clicking the signin button the webpage gives an error as "Required field" so basically the credentials are not entered. I have also tried to set the value to the attribute using IE.document.getElementById("email").setAttribute("Value") = "XX" but still is throws the same error. I have also tried .focus method too but no luck. I hope I have explained my issue,

Bringing Internet Explorer window to foreground

断了今生、忘了曾经 提交于 2020-07-18 07:15:27
问题 I have a macro that opens the Internet Explorer Dim IE As Object Set IE = CreateObject("InternetExplorer.Application") IE.Visible = True Later the macro interacts with other windows, so the IE loses the focus. But, after the other interactions, I need to send keys to the IE application. I searched how to activate again the IE Window, but none worked. I tried (1) Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As Long Public Sub test() Set acObj = GetObject(,