internet-explorer

Print HTML page in WinForms without using IE

Is there any way to print HTML page in WinForms without using IE? Some our customers have problems with IE8 at Windows XP and I want to implement printing without dependence on IE. ...

IE horizontal scroll problem

When scrolling the div the table cells move, but the cell text stays in the same position relative to the page. The cell text should scroll along with the cell even though it's in a relative div. The problem can only be seen in IE (IE7 at least). The sample behaves correctly in Chrome and Firefox. <!DOCTYPE html PUBLIC "-//W3C//DTD ...

How to detect programmatically that Internet Explorer is switched off?

What would be the easiest way to programmatically check that Internet Explorer is switched off from Windows Features? Some registry key? I'm trying to customize a dialogue shown to user based on whether IE is installed or not and whether IE is enabled or not. ...

Correct way to enable autocomplete in SharePoint (Asp.Net) forms?

There is a problem in SharePoint (both WSS3 and WSS2) that item registration and edit forms do not have the "autocomplete" feature in Internet Explorer. That is, if you need the same value in some text field frequently, you have to type it manually. Internet Explorer does not provide you with drop-down list of values you have previously ...

Move large resized image in IE(7 and 8) is very slow.

Hi, im writing some code to move dinamically an element on my page. If i try to apply this at img element with generous dimension i notice in IE a very slow down effect. Also, if the image is not displayed with its full size, IE seems to be more more slow. I think IE apply a sort of resize algorithm for img every time it is refreshed... ...

Determining Internet Explorer Cookie Settings Through the Windows Registry

Is there a way to determine Internet Explorer Cookie Settings (that is, whether cookies are accepted or not) through the Windows Registry? ...

Clearing C#'s WebBrowser control's cookies for all sites WITHOUT clearing for IE itself

EDIT: As far as I know, there is no solution to this problem, making it yet another testament to the fact that one should not use C#'s WebBrowser. We ended up with a warning sign at the start of our program, notifying the user that cookies will be cleared for IE. The short version of what I'm trying to do is in the title. Here's the lon...

Weird black spots on custom Google Map with IE

Hello. I'm getting some weird black spots with a custom map page (via the Google Maps API v2.x) I have created. (Click SERVICIOS and then the icon farthest south to generate image shown below.) The issue seems to only appear when using Internet Explorer. I'm wondering if this is a common problem and if there is a common fix? Any ideas? ...

How to make WebKit or IE call your application (.NET) from HTML page opened in browser?

I have a .NET application running on windows. I want clicking on some page element (button link flash app etc) to launch my app with some special parameters. (It should run not just in IE but on WebKit based windows browsers too) During App install we suppose that user is Admin and is running Vista or Windows 7 or Later. So my question ...

jQuery: margin animation works in Chrome, not in Firefox and IE

Project: http://design.vitalbmx.com/fave/news.html When I click "Add to favorites" button (under main pic), in Chrome it animates UL, while in Firefox and IE it does not work. Can't figure out why it works differently. Please help. ...

Javascript - Concatenate Multiple NodeLists Together

I was originally asking for an elegant way to simulate the Array.concat() functionality in IE or older browsers, because it seemed that concat was not supported. Only, of course it is and the reason the object didn't support it is because it wasn't an array. Oops! getElementsByTagName returns a NodeList, not an array. The real question,...

Elegant way to import XHTML nodes from xhr.responseXML into HTML document in IE?

While navigating through a site, I'm dynamically loading pages via Ajax and then only updating the elements of the page that are changed, such as the navigation state and main content area. This is similar to Lala. I am serving the site as XHTML in order to be able to have access to xhr.responseXML which I then traverse in parallel with ...

[Google Maps] Trouble with invalid argument when switching jQueryUI based tabs

Here's a page with the issue To reproduce the error, using IE - click the directions tab, then any of the others. What I'm trying to do is this: On page load, do nothing really. However, when the directions tab loads - setup the map. Like so: $('#tabs').bind('tabsshow', function(event, ui) { if (ui.panel.id == "tabs-5") { ...

Console.log in IE on an object just outputted [object Object]

All, I'm used to debugging JavaScript in Chrome or Firefox just because their built in developer tools are a lot cleaner than IE's. IE8 came along way with the Developer Tools being more polished, but they're still not completely up to snuff. I like being able to step through code as if I was in Visual Studio, and that is pretty nice ab...

find explorer.exe hwnd

I want to find & enumerate explorer.exe. Found 'EnumChildWindows' API call but how to 'get' explorer.exe hwnd ??? ...

Disable the "Internet explorer is not currently your default browser" warning when using IWebBrowser2

Hello I have a MFC application that launches a IWebBrowser2 window. On users computers where Internet Explorer is not their default browser they get the following warning message "Internet explorer is not currently your default browser. Would you like to make it your default browser?" Is there a way to disable this check before I...

Retain anchor when redirecting subdomain (IE)

Firefox: http://example.com/about/#anchor -> http://www.example.com/about/#anchor Internet Explorer 6-8: http://example.com/about/#anchor -> http://www.example.com/about/ Why is the anchor dropped in IE and what can I do about it? (Query string is not dropped, only the #xyz part) Is a PHP header or javascript redirect my only option? ...

Why can't I fade out this table row in IE using jQuery?

I can't get the table row to fade out in IE. It works in Chrome, but not IE. It just becomes really 'light' and stays on the screen. I tried IE8 with and without compatibility mode. <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function hideIt() { $('#hideme').fadeTo("slow", ...

CSS filters - sometimes working, sometimes not?

I'm on the verge of pulling my hair out over this. Here I have a block of perfectly functioning CSS: #admin .block.mode.off { opacity: 0.25; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=25)"; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25); } Meanwhile... Internet Explorer 8 couldn't care less ...

Load ActiveX DLL in Internet Explorer with elevated privileges

I have an ActiveX control that I'm loading with JavaScript in Internet Explorer. It needs to run as medium integrity under UAC in Vista and Win7. This is written in C/C++, compiled in Visual Studio. One way to elevate privileges is to create a broker process that can request a medium integrity level. However, for this project, this is n...