active questions tagged internet-explorer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:42:03Z http://stackoverflow.com/feeds/tag/internet-explorer http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916569/how-powerful-can-graphing-be-in-ie6 1 How powerful can graphing be in IE6? Abiel 2009-12-16T18:13:01Z 2009-12-17T10:35:38Z <p>I'm interested in developing a web-based application with rich time series charting functionality, where the charts can be constructed and manipulated on the client side. I would like the chart surface to be highly interactive, with the ability to pan and zoom with the mouse, click on lines, axes, etc. Importantly, I would prefer not to use Flash, AND I need to support Internet Explorer 6. My question is, is there anything out there that is going to allow me to do this, or must I use Flash? I have seen good charts that use the HTML5 canvas element, but I am not sure to what extent these would be supported in IE6 using excanvas.js, and if they are supported, what type of performance I can expect. I have not actually found a working example that ran in IE6.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1915390/onclick-javascript-not-working-properly-in-ie 1 Onclick javascript not working properly in IE razass 2009-12-16T15:31:46Z 2009-12-17T08:43:03Z <p>Please excuse my ignorance I am not very familiar with Javascript and have been tasked with repairing a bug by a developer no longer at the company.</p> <p>The onclick works perfectly in FireFox, however in IE 7&amp;8 (the only ones we test for), it appears to run through the onclick functions properly, then instead of the data being submitted to the form URL in goStep3(), it runs through every onclick on the page, with 'href="#"' then finally submits with incorrect information as the variable has been overwritten 50 times.</p> <pre><code>&lt;a href="#" onclick="trackSponsor(62, 64265); goStep3(1896, 64265, 0); return false;"&gt;view&lt;/a&gt; </code></pre> <p><strong>EDIT:</strong> When I run <code>trackSponsor(62, 64265); goStep3(1896, 64265, 0); return false;</code> in the Developer Tools in IE8 I get an error of returning false outside of a function....removing that it works just fine.</p> <p>Is the line that I belive is causing the problems</p> <p>trackSponsor() is working properly and returns <code>false</code></p> <p>goStep3() is quite a large function however it works by retrieving values from 4 other functions within, assigning the values to a URL within <code>theAction</code></p> <p>It completes the function by <strong>EDIT:</strong> </p> <pre><code>var yr = $("#find-yr").attr('value'); var me = $("#find-me").attr('value'); var mo = $("#find-mo").attr('value'); var keywords = $("#find-keywords").attr('value'); var theAction = PATH_BASE+'find/step3/'+p_term+'/'+p_id+'/'+p_l_id+'/'; document.forms['FindForm'].action = theAction; document.FindForm.submit(); return true; </code></pre> <p>I have tried returning false from this function, as well as changing the <code>document.FindForm.submit()</code> to the 'correct' syntax of <code>document.forms['FindForm'].submit()</code> and it still does not submit until running through all of the other 'onclick' s on the page. </p> <p>Thanks in advance!</p> <p>Notes: </p> <p>jQuery is being used as well.</p> <p>Javascript is not throwing any errors. </p> <p>This works fine in FireFox</p> <p>I can see it going through all of the other functions in the other 'onclick's using Developer Tools and stepping through the page it does not submit the results of goStep3 until it has gone through all of the other 'onclick' functions on the page.</p> http://stackoverflow.com/questions/1919973/saving-complete-webpage-into-local-disk-using-ihtmldocument-atl-interface 0 Saving complete Webpage into local disk using IHTMLDocument ATL interface. Ramanand Bhat 2009-12-17T07:09:54Z 2009-12-17T07:09:54Z <p>Hello Experts,</p> <p>In our win32 ATL project requirement we need to save the browsed web page into local disk in order to view it offline. </p> <p>Using IHTMLDocument2 interface we have retrieved html content using get_all() method and retrieved images from the get_images() method.</p> <p>now how do we extract other external files such as stylesheet (.css) and javascript (.js) files from web Document.</p> <p>your help will be greatly appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/993354/why-does-the-jquery-pulsate-effect-leave-jagged-text-behind-in-ie 0 Why does the jQuery pulsate effect leave jagged text behind in IE? mark smith 2009-06-14T18:03:04Z 2009-12-17T06:26:02Z <p>I found out that pulsate leaves jagged text behind when I use the pulsate effect of jQuery UI... after some searching it appears that it's an IE bug... i think it may have something to do with the opacity, but i am unsure.</p> <p>I tried the following but it doesn't work:</p> <pre><code> $(detail).effect("pulsate", { times: 1 }, 200, function(){ $(this).removeAttr('opacity'); }); </code></pre> <p>Does anyone know of a work around? I searched here and found a similar problem with <code>fadein</code> and <code>fadeout</code>... the solution listed was to remove the filter attribute. But I tried this also and it didn't seem to work. If I remove the <em>style</em> attribute then it works, but then I loose my positioning :-)</p> <p>Anyone had this issue?</p> <p>And is it the same fix for pulsate as with fadein and fadeout, etc...? I must admit I don't seem to get the issue with fadein and fadeout.</p> <p>Pulsate is my problem, but it works perfectly in Firefox.</p> http://stackoverflow.com/questions/1918323/google-maps-rendering-markers-and-map-center-differently-in-internet-explorer 1 Google Maps Rendering markers and map center differently in Internet Explorer Shadi Almosri 2009-12-16T22:38:28Z 2009-12-17T00:59:49Z <p>Hiya All,</p> <p>I have a strange problem with Google Maps showing differently in IE and the rest of the browser world. I'm testing in IE8 and in IE8 Compatibility view, both show the same, but Safari, FF, Chrome all act fine and as expected.</p> <p>The page i'm working on is this: <a href="http://afid.staging.dante-studios.com/" rel="nofollow">http://afid.staging.dante-studios.com/</a> at the front are two place holders one for Asia and one for Africa. Both seem to centre incorrectly in IE.</p> <p>Also the markers and info boxes are loaded up from an XML file, it seems that IE isn't loading all of them up either....</p> <p>I would appreciate if anyone can shed any light on this as i've spent quite a while so far attempting to debug it but i can't actually find anything wrong...</p> <p>Thanks in advance</p> <p><strong>UPDATE</strong> The map center issue has been kindly resolved, but now the issue with not all the markers showing still remains, if one is to look at the asia section (india) and compare between IE and any other browser, not all the markers are showing, any clues will be appreciated.</p> http://stackoverflow.com/questions/1918820/css-sprites-showing-broken-image-icon-over-image-but-hover-still-works 1 CSS Sprites showing broken image icon over image, but hover still works. Loony2nz 2009-12-17T00:51:12Z 2009-12-17T00:56:46Z <p>I can't figure this out..hopefully someone else can.</p> <p>I have an image button . The hover effect works fine. However, I have the IE broken image icon over the button image.</p> <p>Lookie here: <a href="http://imgur.com/EennI.png" rel="nofollow">Funky Image</a> <a href="http://imgur.com/vtVEv.png" rel="nofollow">Funky Image Hover</a></p> <p>As you can see...they both work except for that annoying broken image.</p> <p>Here's my CSS:</p> <pre> .donate-btn{ background: transparent url(/custom/img/donate-btn.png) no-repeat; overflow:hidden; height:45px; width:210px; float:left; } .donate-btn:hover{ background: transparent url(/custom/img/donate-btn.png) no-repeat; height:45px; width:210px; background-position: 0 -45px; } </pre> http://stackoverflow.com/questions/485266/net-how-to-make-webbrowser-control-launch-in-ie-display-html-out-of-process 3 .NET: How to make WebBrowser control launch in IE, display HTML, out of process? Ian Boyd 2009-01-27T21:11:51Z 2009-12-17T00:12:21Z <p>i want to create a WebBrowser control, give it the HTML to display, then make it appear out of process in its own Internet Explorer window.</p> <p>Can it be done?</p> <p><hr /></p> <ul> <li>yes it has to be out of process</li> <li>i already have a technique that involves writing a temporary file. i want to remove this hack solution</li> </ul> <p><hr /></p> <p>i have three other questions on stackoverflow running, all working on a tiny segment of making the following code work:</p> <pre><code>public static void SpawnIEWithSource(String szHtml) { IWebBrowser2 ie = (IWebBrowser2)new InternetExplorer(); object mv = System.Reflection.Missing.Value; //special "nothing" value object url = (String)@"about:blank"; ie.Navigate2(ref url, ref mv, ref mv, ref mv, ref mv); mshtml.HTMLDocumentClass doc = (mshtml.HTMLDocumentClass)ie.Document; doc.Write(szHtml); doc.Close(); ie.Visible = true; } </code></pre> <p><strong>Note:</strong> The above code works fine in native apps.</p> <p>i thought i would cut to the chase, and see if anyone has any other ideas, that don't involve the only way i've been able to figure it out.</p> <p><hr /></p> <p>The hack solution, that uses a temporary file, is:</p> <pre><code>public static void SpawnIEWithSource(String szHtml) { IWebBrowser2 ie = (IWebBrowser2)new InternetExplorer(); object mv = System.Reflection.Missing.Value; //special "nothing" value object url = (String)@"about:blank"; ie.Navigate2(ref url, ref mv, ref mv, ref mv, ref mv); //Todo: Figure out the .NET equivalent of the following //so that it doesn't have to write a temporary file //IDispatch webDocument = ie.Document; //webDocument.Write(szHtml); //webDocument.Close(); String tempFilename = Path.GetTempFileName(); try { //Rename to .htm, or else ie won't show it as actual HTML String htmlFile = Path.ChangeExtension(tempFilename, "htm"); File.Move(tempFilename, htmlFile); //.NET's version of File.Rename tempFilename = htmlFile; //Write string to file StreamWriter writer = new StreamWriter(tempFilename); writer.Write(szHtml); writer.Close(); url = (String)tempFilename; ie.Navigate2(ref url, ref mv, ref mv, ref mv, ref mv); //If we're going to delete the file, then we have to wait for IE to use it //else we delete it before it uses it while (ie.ReadyState != tagREADYSTATE.READYSTATE_COMPLETE) { System.Threading.Thread.Sleep(10); } } finally { File.Delete(tempFilename); } //Make IE Visible ie.Visible = true; } </code></pre> http://stackoverflow.com/questions/1918434/ie-javascript-to-change-img-src-cancels-existing-loading-bar 0 IE - Javascript to change IMG SRC cancels existing loading bar Walt W 2009-12-16T23:02:28Z 2009-12-16T23:12:06Z <p>Hi there, I've come across an obscure problem where many of the pages on my company's website take several seconds up to several minutes to load. Ordinarily, one would expect a browser's native progress bar to continue spinning until all outstanding requests have finished, but IE will stop the progress bar when ANY request returns. And yes, this has to work with IE. Our site has some javascript (jQuery) that changes a DOM element's background-image when another element is mouse-over'd, which causes IE to send a request and thus interrupts the existing progress bar.</p> <p>Exact sequence of events:</p> <ol> <li><p>Click link with long load time (progress bar spins correctly)</p></li> <li><p>Move the mouse about the page while waiting, inadvertently triggering an image change (progress bar stops)</p></li> <li><p>Customer complains that page stopped loading</p></li> </ol> <p>So, any ideas? One approach I thought would be to change the mouse cursor to waiting when a link is pressed, and to change the cursor back to a normal cursor if the browser's stop button is pressed. However, it doesn't seem to be too easy to detect if the user presses the stop button . . . The only other option I can think of is to stop the background image from changing once a link has been clicked, but that is a very lame approach.</p> <p>Thanks for the help :)</p> http://stackoverflow.com/questions/893767/oracle-forms-applications-in-internet-explorer-8-using-jinitator 0 Oracle Forms/Applications in Internet Explorer 8 using JInitator Xap 2009-05-21T16:19:30Z 2009-12-16T18:29:42Z <p>Has anyone been able to get Oracle Forms running JInitator to loan in Internet Explorer 8 yet? I have tried removing all add-ons, various version of Java, add the domain to the trusted sites using wildcards, and using compatibility mode to no avail. I am looking to get our Oracle guys to kick there Internet Explorer 6 habit. This is related to Oracle E-Business.</p> http://stackoverflow.com/questions/802839/button-inside-of-anchor-link-works-in-firefox-but-not-in-internet-explorer 4 Button inside of anchor link works in Firefox but not in Internet Explorer? Jason 2009-04-29T15:15:59Z 2009-12-16T17:50:57Z <p>Everything else in my site seems to be compatible with all browsers except for my links. They appear on the page, but they do not work. My code for the links are as follows- </p> <pre><code>&lt;td bgcolor="#ffffff" height="370" valign="top" width="165"&gt; &lt;p&gt;&lt;a href="sc3.html"&gt;&lt;button style="width:120;height:25"&gt;Super Chem #3&lt;/button&gt;&lt;/a&gt; &lt;a href="91hollywood.html"&gt;&lt;button style="width:120;height:25"&gt;91 Hollywood&lt;/button&gt;&lt;/a&gt; &lt;a href="sbubba.html"&gt;&lt;button style="width:120;height:25"&gt;Super Bubba&lt;/button&gt;&lt;/a&gt; &lt;a href="afgoohash.html"&gt;&lt;button style="width:120;height:25"&gt;Afgoo Hash&lt;/button&gt;&lt;/a&gt; &lt;a href="superjack.html"&gt;&lt;button style="width:120;height:25"&gt;Super Jack&lt;/button&gt;&lt;/a&gt; &lt;a href="sog.html"&gt;&lt;button style="width:120;height:25"&gt;Sugar OG&lt;/button&gt;&lt;/a&gt; &lt;a href="91pk91.html"&gt;&lt;button style="width:120;height:25"&gt;91 x PK&lt;/button&gt;&lt;/a&gt; &lt;a href="jedi1.html"&gt;&lt;button style="width:120;height:25"&gt;Jedi&lt;/button&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;a href="http://indynile99.blogspot.com"&gt;&lt;button style="width:120;height:25"&gt;Blog&lt;/button&gt;&lt;/a&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;/td&gt; </code></pre> <p>THANKS for the help!</p> http://stackoverflow.com/questions/1916058/html-not-displaying-same-in-ie8 0 html not displaying same in IE8 jriggs 2009-12-16T16:56:46Z 2009-12-16T17:21:23Z <p>The 'required' text is showing up to the left of the input box. Similar problem in Opera except is displays on the next line (creates a line break). Looks as expected in FF3.1 and chrome. Any suggestions? Eventually I would like to use the display:none attribute on the 'required' span and show this span as necessary with javascript.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;style type="text/css"&gt; &lt;!-- input.missing { background-color: #FFFF77; } div.row { clear: both; padding-top: 5px; } div.row span.label { float: left; width: 100px; text-align: right; } div.row span.formw { // float: right; width: 235px; text-align: left; padding-right: 0px; padding-left: 45px; } div.spacer { clear: both; } .container{ width: 425px; background-color: #ccc; border: 1px dotted #333; padding: 5px 5px 5px 5px; margin: 0px auto; } .error{ color: #ff0000; } .required{ color: #ff0000; float: right; // display:none; // display:inline; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="contact_form"&gt; &lt;form action="/jr/index.php" method="POST" id="contact"&gt; &lt;div id="top_message" style="width: 360px; margin: 10px auto;"&gt; Enter Your Information Below&lt;/div&gt; &lt;div class="container"&gt; &lt;div class="row"&gt; &lt;span class="label"&gt;Name:&lt;/span&gt; &lt;span class="formw"&gt;&lt;input size="30" maxlength="30" name="name" id="name" value=""&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="row"&gt; &lt;span class="label"&gt;Email:&lt;/span&gt; &lt;span class="formw"&gt;&lt;input size="30" maxlength="30" name="email" id="email" value=""&gt;&lt;/span&gt; &lt;span id="email_error" class="required"&gt;(required)&lt;/span&gt; &lt;/div&gt; &lt;div class="row"&gt; &lt;span class="label"&gt;Shoe size:&lt;/span&gt;&lt;span class="formw"&gt;&lt;input type="text" size="25" /&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="row"&gt; &lt;span class="formw"&gt; &lt;input type="image" value="submit" name="submit" class="button" src="submit.png" alt="Submit" /&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="spacer"&gt; &amp;nbsp; &lt;/div&gt; &lt;/div&gt; &lt;div id="message_ajax" style="width: 360px; margin: 10px auto;"&gt;&lt;/div&gt; &lt;/form&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>IE really makes me hate web dev sometimes.</p> http://stackoverflow.com/questions/1915924/dwr-util-js-not-working-in-internet-explorer 0 DWR util.js not working in internet explorer sangram 2009-12-16T16:37:39Z 2009-12-16T16:49:50Z <p>Hi there,</p> <p>I have been using DWR for couple of months in my project. i tried using dwr's util.js in one of my jsp but strangely when i include util.js(version 2.0.1) none other javascript is working in internet explorer(working fine in mozilla) .</p> <p>i am trying to manipulate tables with util.js as described <a href="http://directwebremoting.org/dwr/browser/util/tables.html" rel="nofollow">here</a> and more surprisingly i can't even see the link functioning well in Internet Explorer. </p> <p>has anyone come across this. any help?</p> <p>thanks! </p> http://stackoverflow.com/questions/1651922/need-to-brainstorm-some-ideas-for-high-performance-overflow-detector 1 Need to brainstorm some ideas for high performance overflow detector mkoryak 2009-10-30T19:47:26Z 2009-12-16T15:47:13Z <p>Problem: I have a large table, with say 20 columns, and 150 rows. The columns can be resized by the user (think excel). Each cell has overflow:hidden set. </p> <ul> <li>When text overflows in any given <strong>cell</strong> i want to give a hint to the user that this is happening. </li> </ul> <p>Constraints:</p> <ul> <li>This must perform well on IE6. Meaning that if you do this on IE6, you wont want to kill someone while using it.</li> </ul> http://stackoverflow.com/questions/1891194/inplaceactivate-on-atl-control-not-called-until-mouse-event 1 InPlaceActivate on ATL control not called until mouse event unknown (google) 2009-12-11T22:10:27Z 2009-12-16T14:45:01Z <p>I have an ActiveX control written in C++ that I created with VS2008 and ATL. For the most part, it is a pretty standard (not modified much from the original template) control, except that instead of using IDispatchImpl, I have created my own IDispatchEx implementation. This control is only used in Internet Explorer, and I have been testing primarily with IE8.</p> <p>Everything works great, except that for some reason, InPlaceActivate doesn't get called until I move the mouse over the region where the object tag is hosted in the browser; no window is created, no WM_CREATE message sent, etc.</p> <p>I have tried implementing DISPID_READYSTATE, but nothing seems to help. If I call <code>InPlaceActivate(OLEIVERB_UIACTIVATE);</code> from the <code>SetClientSite</code> method and it usually works, but that certainly isn't normally neccesary.</p> <p>Why would this happen? How does the browser determine when to call InPlaceActivate (or whatever call triggers that)?</p> <p>The tag used to embed the ATL control into the page is: <code>&lt;object id="plugin" type="application/x-vnd.FirebreathTemplatePlugin" width="300" height="300"&gt;&lt;/object&gt;</code></p> <p>You full source to the file can be found here: <a href="http://code.google.com/p/firebreath/source/browse/src/ActiveXPlugin/FBControl.h" rel="nofollow">http://code.google.com/p/firebreath/source/browse/src/ActiveXPlugin/FBControl.h</a></p> http://stackoverflow.com/questions/603311/reflection-terminal-emulator-integration-with-ie 1 Reflection Terminal Emulator - Integration with IE Clayton 2009-03-02T17:52:57Z 2009-12-16T04:15:47Z <p>I'm trying to implement some integration between a legacy app running in the Reflection Terminal Emulator and a browser-based app running in IE.</p> <p>I'm using Host Initiated Scripts so that maintenance and deployment issues are isolated to the legacy app. All scripts will be generated in the legacy app and transmitted to Reflection using escape sequences.</p> <p>I am currently able to:</p> <ol> <li>Launch IE</li> <li>Set options such as hiding toolbars</li> <li>Navigate to a URL</li> <li>Transmit status info back to the legacy app</li> <li>Wait for a "close" signal from the legacy app</li> <li>Close IE</li> </ol> <p>Here's VBA code to do that:</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = CreateObject("InternetExplorer.Application") objIE.ToolBar = false objIE.Navigate("http://www.google.com/") objIE.Visible = true Session.Transmit "OK" & CR Session.WaitForString "CLOSE", 0, rcAllowKeystrokes objIE.Quit End Sub </code></pre> <p>The problem with this is that the script continues to run until it gets the close command from the legacy app.</p> <p>What I want to do is use one script to launch the browser, and another to either close it or re-use it for another URL. However, I haven't been able to find a way to save my reference to IE across script calls. Declaring objIE as Global outside Sub Main didn't help. The Session object does persist across script calls, but it doesn't appear to have a property that I can use for this purpose. (Session does have a UserData property, but that's a String, not an Object.)</p> <p>Here's an example of what I'd like to do:</p> <p>Script 1 - Open IE &amp; Leave it Open:</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = CreateObject("InternetExplorer.Application") objIE.ToolBar = false objIE.Navigate("http://www.google.com/") objIE.Visible = true Session.Transmit "OK" & CR End Sub </code></pre> <p>Script 2 - Send original IE window to a new URL</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = FindOriginalIE() objIE.Navigate("http://www.stackoverflow.com/") Session.Transmit "OK" & CR End Sub </code></pre> <p>Script 3 - Close IE</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = FindOriginalIE() objIE.Quit Session.Transmit "OK" & CR End Sub </code></pre> <p>The part that I can't figure out is how to implement the FindOriginalIE() function used in Scripts 2 and 3.</p> <p>I tried using GetObject() instead of CreateObject(), but that got me nowhere. GetObject() won't open a new IE window, or find an existing one. I suspect this is because I'm running under Citrix, but I'm not sure.</p> <p>My only leads right now are to try using IE's hWND to reconnect to the original window, or to use DDE instead of OLE. I haven't had much luck with either of those however, mainly because of a lack of documentation.</p> <p>So, my questions are:</p> <ol> <li>Is what I'm trying to do possible using OLE? That is, is there a way to persist my handle to IE across host initiated script calls?</li> <li>Should I expect GetObject() to work, or is that a dead end?</li> <li>Is it possible to use the Win32 API in a host initiated script to re-connect to IE using hWND?</li> </ol> <p>Any links to related articles, sample code, or other insights are greatly appreciated.</p> http://stackoverflow.com/questions/222755/open-the-csv-file-format-into-excel-from-internet-explorer-6 0 Open" the csv file format into Excel from internet explorer 6 Nick Long 2008-10-21T17:41:25Z 2009-12-16T01:07:44Z <p>I am using Java Struts, sending it to user using the following codes</p> <pre><code>response.setContentType("application/vnd.ms-excel"); response.setHeader("Content-Disposition", "attachment;filename=" + fileFullName); </code></pre> <p>Firstly I hope that this is the correct place for my question... :) I hope that you can help me.</p> <p>The error message I get when I try to open a file from Internet Explorer is</p> <pre><code>"C:\Documents and Settings\USERNAME\Local Settings\Temporary Internet Files\Content.IE5\QXJ0P436\btbillsdfjlsfjk.csv' could not be found" </code></pre> <p>I am trying to "Open" the csv file format into Excel. It allows me to "Save" the file to which ever directory I want but I don't want to do that, I would just like to open the file. This has always worked in the past so I'm now wondering why the file is 'missing'.</p> <p>Any ideas?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1909780/need-message-from-activex-that-runs-in-a-thread 0 Need message from ActiveX that runs in a thread vikasde 2009-12-15T19:28:16Z 2009-12-15T23:38:52Z <p>I have an activex control, that I developed myself. The activex runs in a thread to make sure that IE doesn't freeze when its executing the long task. The long task is pretty much looping through 32K rows. Now while its looping I would like to display a message to the IE user notifying him about the row position. That way the user can see the process. Is there a way to achieve this?</p> http://stackoverflow.com/questions/607198/padding-a-text-input-in-ie-possible 0 padding a text input in IE... possible? Jim Robert 2009-03-03T16:48:09Z 2009-12-15T23:12:34Z <p>I have a text input with a search buton absolute positioned over it... to make space for the button I used some padding to keep the text from going under the button, which is fine, it works in firefox, but not IE.</p> <p>In fact... It doesn't seem like padding on text inputs works at all in IE.</p> <p>They have the following code</p> <pre><code> &lt;style type="text/css"&gt; #mainPageSearch input { width: 162px; padding: 2px 20px 2px 2px; margin: 0; font-size: 12px; -moz-border-radius: 5px; -webkit-border-radius: 5px; background:#F3F3F3 url(form-shadow.png) repeat-x scroll left top; border-color:#C6C6C6 #C6C6C6 #E3E3E3; border-style:solid; border-width:1px; color:#666666; } #mainPageSearch { margin-bottom: 10px; position: relative; /* Lets me absolute position the button */ } #mainPageSearchButton { display: block; position: absolute; top:0px; right: -2px; text-indent: -2000em; height: 22px; width: 22px; background: transparent url('images/searchBtn.png') top center no-repeat; } &lt;/style&gt; &lt;form id="mainPageSearch" action=""&gt; &lt;input type="text"/&gt; &lt;a id="mainPageSearchButton" href="#"&gt;Search&lt;/a&gt; &lt;/form&gt; </code></pre> <p>Is what I'm trying to do possible or should I just suck it up and deal with the text going under the search button?</p> <p>I know I could make a search box with a transparent background/border and draw the styling using a containing div... but that isn't really an option because of how many places I've have to change it on the site. </p> <p>Maybe I'll make a new class for this text input that makes it transparent and assign the normal text input style to the containing div? What do you think?</p> <p><strong>edit</strong>: sorry I should have included the doctype... here it is:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; </code></pre> <p>also, The problems I'm having are in IE 7</p> http://stackoverflow.com/questions/1907131/c-interface-version-of-httpwebrequest-and-httpwebresponse 0 C++ interface version of HttpWebRequest and HttpWebResponse. Ramanand Bhat 2009-12-15T12:33:27Z 2009-12-15T20:46:38Z <p>Hi All,</p> <p>We are wondering how to use HttpWebRequest and HttpWebResponse .net framework Class in ATL c++ project is their any interface exposed for webrequest class in C++, currently we cannot have a c# project so we are looking for alternative interface.</p> <p>Any help will be greatly appreciated. Ramanand. </p> http://stackoverflow.com/questions/1830651/how-can-i-test-my-website-with-ie6 2 how can i test my website with ie6 oo 2009-12-02T04:30:14Z 2009-12-15T20:35:15Z <p>i worked on a website in the latest firefox and then presented it on a machine that just had ie6 (and it looked horrible). is there anyway i can test what it will look like in IE6 without having to actually download. I see that ie8 has a compatibility mode (to show what it would look like in ie7), is there a similar thing for ie 6?</p> http://stackoverflow.com/questions/451486/pre-tag-loses-line-breaks-when-setting-innerhtml-in-ie 2 <pre> tag loses line breaks when setting innerHTML in IE MCS 2009-01-16T18:40:05Z 2009-12-15T17:37:32Z <p>I'm using Prototype's PeriodicalUpdater to update a div with the results of an ajax call. As I understand it, the div is updated by setting its innerHTML.</p> <p>The div is wrapped in a <code>&lt;pre&gt;</code> tag. In Firefox, the <code>&lt;pre&gt;</code> formatting works as expected, but in IE, the text all ends up on one line.</p> <p>Here's some sample code found <a href="http://forums.devnetwork.net/viewtopic.php?f=13&amp;t=93265" rel="nofollow">here</a> which illustrates the problem. In Firefox, <code>abc</code> is on different line than <code>def</code>; in IE it's on the same line.</p> <pre><code> &lt;html&gt; &lt;head&gt; &lt;title&gt;IE preformatted text sucks&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;pre id="test"&gt; a b c d e f &lt;/pre&gt; &lt;script type="text/javascript"&gt;&lt;!-- var textContent = document.getElementById("test").innerText; textContent = textContent.replace("a", "&lt;span style=\"color:red;\"&gt;a&lt;/span&gt;"); document.getElementById("test").style.whiteSpace = "pre"; document.getElementById("test").innerHTML = textContent; --&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Anyone know of a way to get around this problem?</p> http://stackoverflow.com/questions/1642020/getting-print-media-css-style-applyed-web-page-in-webbrowser-control-in-c 0 Getting Print media CSS style applyed web page in WebBrowser control in C# Ramanand Bhat 2009-10-29T06:54:53Z 2009-12-15T17:00:03Z <p>Hi all,</p> <p>We would like to print the Web page loaded onto WebBrowser control in C# .net application.We have custom printer driver to print the bitmap images, now our task is to get the printer friendly version of web pages by applying print media CSS style to webBrowser control.</p> <p>Do you know the method /code to get the Printer friendly version of any html web page in C# .net application.</p> <p>Thanks, Ramanand Bhat. </p> http://stackoverflow.com/questions/1901761/personal-internet-moderation-script 0 Personal Internet Moderation Script jrhicks 2009-12-14T16:01:29Z 2009-12-15T16:01:10Z <p>What approach should I take to develop software to block traffic at the desktop level (windows) to sites based on their domain name.</p> <p>Messing with a host file was easy, but the browser seems to have too long of a delay before it recognizes changes in the host file.</p> <p>My ideal solution would be a simple ruby script to disable sites during work hours and then re-enable them later.</p> http://stackoverflow.com/questions/1907813/internet-explorer-cannot-open-the-internet-site-operation-aborted-how-to-fix-thi 1 Internet Explorer Cannot Open the Internet Site Operation Aborted, how to fix this error? Jitendra 2009-12-15T14:26:11Z 2009-12-15T15:56:11Z <p>This code giving error in IE</p> <h2>Internet Explorer Cannot Open the Internet Site Operation Aborted, how to fix this error?</h2> <pre><code>var tip = "&lt;p&gt;Most computers will open PDF documents "; tip += "automatically, but you may"; tip += "need to download &lt;a title='Link to Adobe website-opens in a new window'"; tip +=" href='http://www.adobe.com/products/acrobat/readstep2.html' target='_blank'&gt;Adobe Reader&lt;/a&gt;.&lt;/p&gt;"; $(document).ready(function(){ //IF NUMBER OF PDF LINKS IS MORE THAN ZERO INSIDE DIV WITH ID maincontent //THEN THIS WILL PUT TIP PARAGRAPH AS LAST CHILD OF DIV if($("div#maincontent a[href*='/pdf']").length&gt;0){ $("div#maincontent").children(":last-child").after(tip); } }); </code></pre> <p>See this page in IE : <a href="http://jsbin.com/oliho4" rel="nofollow">http://jsbin.com/oliho4</a> </p> http://stackoverflow.com/questions/1907365/css-hover-breaks-page-layout-in-ie-why 0 css hover breaks page layout in IE WHY? Ashley Ward 2009-12-15T13:11:55Z 2009-12-15T15:52:20Z <p>I am using a CSS style hover on some image links on my page.</p> <p>When a user hovers over an image, it's background position changes, providing a highlight effect.</p> <p>When I hover over the image in i.e.6 my page gets pushed down by 40px.</p> <p>Why is this?</p> http://stackoverflow.com/questions/1902869/is-dojo-1-3-and-1-4-compatible-with-ie 0 Is dojo 1.3 and 1.4 compatible with IE? Baa 2009-12-14T19:10:49Z 2009-12-15T14:32:49Z <p>Examples found in the dojo documentation won't load in IE.</p> <p>Such as: <a href="http://docs.dojocampus.org/dijit/Calendar" rel="nofollow">http://docs.dojocampus.org/dijit/Calendar</a></p> <p>I've tried it in IE7, IE8, and quirks mode.</p> <p>Is this problem merely in how they've implemented their documentation? Or are the new dojo frameworks incompatible with IE?</p> http://stackoverflow.com/questions/1904670/change-windows-browser-proxy-settings-via-ruby-script 0 Change Windows browser proxy settings via ruby script jrhicks 2009-12-15T01:18:20Z 2009-12-15T13:17:49Z <p>I'm looking for some code/library to programmatically change proxy settings for popular browsers using Ruby on Windows. Thanks.</p> http://stackoverflow.com/questions/1815138/windows-identity-foundation-and-ie-8 0 Windows Identity Foundation and IE 8 chugh97 2009-11-29T10:01:05Z 2009-12-15T11:27:48Z <p>I have downloaded the SDK and have it installed WIF, got the samples installed under Vista and they seem to work Ok on Firefox but when I run them on IE 8.0 , I can get to the page with the Login control but when I click Login, it comes with a blank page saying "Working...." on the title bar....Dont know why its not working..but Firefox seems to work fine...Any clue??? It was the 1st sample in the Identity Training Kit....</p> http://stackoverflow.com/questions/172918/div-100-height-works-on-firefox-but-not-in-ie-what-to-do 6 Div 100% height works on Firefox but not in IE. What to do? Marcel Tjandraatmadja 2008-10-06T00:40:13Z 2009-12-15T11:17:01Z <p>I have a container div that holds two internal divs; both should take 100% width and 100% height within the container.</p> <p>I set both internal divs to 100% height. That works fine in Firefox, however in IE the divs do not stretch to 100% height but only the height of the text inside them.</p> <p>The following is a simplified version of my style sheet.</p> <pre><code>#container { height: auto; width: 100%; } #container #mainContentsWrapper { float: left; height: 100%; width: 70%; margin: 0; padding: 0; } #container #sidebarWrapper { float: right; height: 100%; width: 29.7%; margin: 0; padding: 0; } </code></pre> <p>Is there something I am doing wrong? Or any Firefox/IE quirks I am missing out?</p> http://stackoverflow.com/questions/1905949/modify-request-headers-in-internet-explorer 0 modify request headers in Internet Explorer nitroxn 2009-12-15T08:26:22Z 2009-12-15T09:09:41Z <p>Hi</p> <p>Is it possible to modify request headers sent by Internet Explorer. There are addins to do this for Mozilla Firefox. Is there a similar thing for IE.</p> <p>Thanks in advance!!</p>