internet-explorer

Programmatically set browser cookie (Firefox)

我的未来我决定 提交于 2020-07-18 05:37:10
问题 I know from this question that Firefox 3.0 and up stores its cookies in an SQLite database. My question is: can you access this database from other desktop programs in such a way that you could add a cookie? I realize this has security implications. However, I do not want to read them at all. I want to be able to set one cookie if possible. I don't even want to overwrite a cookie. I just want to add it if it isn't there already. This is sort of a personal project I'm working on for fun. This

internetexplorer.application hangs on readystate=1 in VBA

拟墨画扇 提交于 2020-07-10 11:22:33
问题 I have an Excel VBA application which uses internetexplorer.application to explore an application. Starting around 2/21/15, this application started failing on readyState being stuck on 1 forever rather than ultimately migrating to 4. This only occurred when navigating the second (or further) link. The first URL works fine. The machine with the problem is a Core i5 M520 CPU (4 CPU) running 64-bit Windows 7. Another machine with a Core 2 Duo T9400 running 32-bit Windows 7 executes the code

internetexplorer.application hangs on readystate=1 in VBA

久未见 提交于 2020-07-10 11:22:07
问题 I have an Excel VBA application which uses internetexplorer.application to explore an application. Starting around 2/21/15, this application started failing on readyState being stuck on 1 forever rather than ultimately migrating to 4. This only occurred when navigating the second (or further) link. The first URL works fine. The machine with the problem is a Core i5 M520 CPU (4 CPU) running 64-bit Windows 7. Another machine with a Core 2 Duo T9400 running 32-bit Windows 7 executes the code

AWS signature problems with IE

≡放荡痞女 提交于 2020-07-09 02:37:37
问题 i'm currently working on file upload directly to S3. The user should have the ability to drag a file/files to a defined part of the site. Then a request to my server starts and generates signatures for the uploaded file/files At first i request valid signatures which are calculated from the server. The generated signature(s) looks like this: [ { "success_action_status":"<status>successful</status>", "formAction":"http://[mybucket].s3.amazonaws.com", "Policy":

AWS signature problems with IE

|▌冷眼眸甩不掉的悲伤 提交于 2020-07-09 02:37:09
问题 i'm currently working on file upload directly to S3. The user should have the ability to drag a file/files to a defined part of the site. Then a request to my server starts and generates signatures for the uploaded file/files At first i request valid signatures which are calculated from the server. The generated signature(s) looks like this: [ { "success_action_status":"<status>successful</status>", "formAction":"http://[mybucket].s3.amazonaws.com", "Policy":

Why doesn't window.addEventListener('scroll', this.someScrollHandler, false) work on IE 10?

久未见 提交于 2020-07-06 11:56:34
问题 I'm currently building a React app with a scroll handler for loading more data in an infinite scroll component. I'm using window.addEventListener('scroll', this.someScrollHandler, false); (with throttling), which works on every browser except for IE — no event is handled. In fact, testing in the IE console, the below code, then scrolling, results in no logging: window.addEventListener('scroll', function() { console.log('testing') }, false); What's going on with scroll events and IE? 回答1: My

VBScript To Launch Internet Explorer With A URL Generated

南楼画角 提交于 2020-06-29 07:41:53
问题 Currently I'm a learning HTA programming. I have a requirement as follows. There are two input boxes in the form (both are mandatory). When I enter the values and click on search button, a url would be created based on the inputs. The should launch the Internet Explorer application with the generated url. My issue is that I'm able to launch IE browser but I'm not able to pass the url to it. I have tried many ways but I'm not able to get it done. I have the given my code below. I have removed

Force browser update if IE8 or older

删除回忆录丶 提交于 2020-06-24 12:56:17
问题 I wonder if it's possible to show a warning or open a pop-up, which would say update your IE to latest version or use Firefox / Chrome / Safari instead, when browser is Internet Explorer IE8 or older... I guess I should use that code below inside the tags... <!--[if lt IE 9]> ...i should use code here... <![endif]--> Is it smart to deceted browser with jQuery and loading jQuery lib? Or is it better to just use regular javascript in order to avoid additional issues with very old browsers? 回答1:

Change Internet Explorer encoding using VBA

荒凉一梦 提交于 2020-06-16 17:01:24
问题 The internet explorer on my side is set to Auto-Select in Encoding from VIew menu. I would like to change the encoding to UTF-8 by VBA code .. I tried such a line but seems not to work as expected ie.document.Charset = "utf-8" Any idea how to achieve that? 回答1: you can try this code Sub IEGetToKnow() Dim IE As InternetExplorer Set IE = New InternetExplorer With IE .Visible = True .Navigate2 "http://www.google.com.eg" While .Busy Or .readyState <> READYSTATE_COMPLETE:DoEvents:Wend .Document

IE 11 throwing “'timeZone' is outside of valid range” when setting timezone to “Europe/London”

陌路散爱 提交于 2020-06-14 06:52:23
问题 I have some js to get the local time displayed in uk's timezone. var d = new Date(); // local system time (whatever timezone that is) var dUK = new Date(d.toLocaleString('en-GB', { timeZone: 'Europe/London' })); // UK timezone (covers BST too) Works fine in all browsers except IE 11(sigh...) which throws the following error: Option value 'EUROPE/LONDON' for 'timeZone' is outside of valid range. Expected: ['UTC'] Does anybody have any suggestions? See http://jsbin.com/dawaqocuvi/1/edit?html,js