explorer

Javascript Internet Explorer 8/7 Not Posting in Ajax Call

Hi Guys new to this site but a big fan. Right the problem. It's come to our attention that sometimes on Internet Explorer the post variable don't come through. This is our basic ajax function function GetXmlHttpObject(handler){ var objXmlHttp=null if (navigator.userAgent.indexOf("Opera")>=0){ xmlHttp=new XMLHttpRequest(); xmlHt...

Can you create a windows explorer plugin using .net?

For example I wanted to create a simple plugin that supports multi-rename. I was thinking of something like a button that could be added to toolbar in windows explorer. But how do I do that and also can this be done in .net? ...

disabling pop-up of secure and non-secure content in Internet Explorer

I have few images on a web page which are fetched from http server while whole web page is on https. So in internet explorer 7 & 8 , I get this pop up of "This page contains both secure and non-secure items" . Majority of users use internet explorer. Somehow they are getting worried about this pop-up. Even though I told some of the users...

[MS Visual Studio] How to view an active view C# class in 'Solution Explorer' ?

I have a solution which has many projects inside it. I build the solution and have some compile errors. Double clicking an error will open a class file, called FileA.cs. What I don't know how to do is viewing FileA.cs in the Solution Explorer pane. Please help! ...

Showing Explorer Menu in Delphi

Possible Duplicate: How to pop-up the Windows context menu for a given file using Delphi? Hello. In Delphi, we can use TShellListView to show files in a component like windows explorer. When i click on an icon in it, it shows a popup menu same as windows explorer. Can i show same menu automatically without using TShellListView...

Jquery select box problem with Internet Explorer

Ok, this might be a really odd problem. I am writing a web application, and I want to change the value of a certain select box: <select name="type" class="type"> <option value="word">word</option> <option value="digit">digit</option> <option value="letter">letter</option> <option value="single">single character</option> <option value="...

xmlHttpRequest abort() method does not close the connection in Internet Explorer

I have multiple xmlHttpRequests on my page, and I am attempting to call the abort method on them all. Works great in FF. IE, on the other hand does not do a darn thing. The connections do not close, and I am unable to navigate to another page until the requests complete. What is this? Why doesn't IE close the connections when abort() is ...

Launching Windows Explorer from ANT?

Is there any way of launching Windows Explorer from ant without stopping the build? Here is what I have so far: <project default="default"> <target name="default"> <fail unless="customerName"> You need to set the customerName. -DcustomerName=Value </fail> <fail unless="htmlCode"> You need to set the htmlCode. -Dcusto...

Javascript/Ajax error help in Internet Explorer

I'm building an e-commerce site for a client, and for some reason in Internet Explorer when I click the add to cart button, the shopping cart messes up the quantities added into the cart. I think for some reason IE is refreshing the page, causing the quantities to double, I just can't figure out how to fix it. I would greatly appreciate ...

Automatically close windows explorer

Hi, i am trying to write a program that close explorer then runs another program. i am getting a problem when trying to close explorer using the following code: foreach (Process p in Process.GetProcesses()) if (p.MainModule.ModuleName.Contains("explorer")) p.Kill(); can somebody please let me know...

Monitor file selection in explorer (like clipboard monitoring) in C#

I am trying to create a little helper application, one scenario is "file duplication finder". What I want to do is this: I start my C# .NET app, it gives me an empty list. Start the normal windows explorer, select a file in some folder The C# app tells me stuff about this file (e.g. duplicates) How can I monitor the currently selecte...

How to create an Explorer-like folder browser control?

Using C# and WinForms in VS2008, I want to create a file browser control that looks and acts like the left pane in Windows Explorer. To my astonishment, such a control does not ship with .NET by default. Ideally, I would like its contents to be exactly the same as in Explorer. For example, on Windows 7, it should show the Favorites and ...

html - how do I make a page load in a new tab in IE8?

What combination of html and IE8 settings get IE8 to open links in a new tab. Or can you not do this with IE8, and you only get the new tabs by manually selecting File-> new/duplicate tab? My website works in Firefox - pages on the site load in the current tab, and links off site load a new tab. IE8 won't behave: target="_blank" open...

Get selected items from explorer using C# .NET 3.5

I am writing a .NET 3.5 WPF application in C#. This application needs to be able to get the selected items out of Windows explorer when it is in the foreground. I already have the code working that handles a global Windows hotkey and then checks to see if the foreground IntPtr is from explorer. If so, I am able to obtain the System.Diag...

MS Word paste into tinymce - retain tabulators

Hi, I have a 5 year old web application which runs tinymce 2.0.5.1 In this version it is possible - in IE 6,7,8 only to paste from MS Word and retain the tab characters. What we have done is to add a callback: paste_insert_word_content_callback : "findtabs" function findtabs(type, content) { if (type == "before"){ content ...

Problem with table resizing after automatically removing from jquery one column (this only happens in Internet explorer)

Hi. I have a table with some columns. Something like this: <>div id="outer"> <table> <tr> <td>remove button</td> <td>remove button</td> </tr> <tr> ... </tr> </table> <>/div>' The table has the size of the div#outer When I click remove button I remove with jquery the entire col...

Find localized Windows strings

I need to find some strings that the current version of Windows is using. For example, when I create a new folder, it is initially named "New Folder" on English Vista. I need to programmatically find what that folder would be named on any language and version of Windows that I might be running on. Anyone have any ideas how to do tha...

Is there any explorer.exe problem in windows 7 ?

s += "<p style=\"text-align: left;\"><a href=\"javascript:window.print()\">PRINT</a></p>"; System.IO.File.WriteAllText(@"CheckForm.html", s); System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.FileName = "explorer.exe"; startInfo.Arguments = "CheckForm.html"; System.Diagnostics.Process.St...

Problem with Killing windows explorer ?

I need to kill windows explorer's process (explorer.exe), for that lets say i use a native NT method TerminateProcess It works but the problem is that the explorer starts again, may be windows is doing that, anyway. When i kill explorer.exe with windows task manager, it doesn't come back, its stays killed. I want to do whatever tas...

Internet Explorer plugin

I have created the plugin which change the content (add a small picture after each link). But when I visit HTTPS-sites then IE shows popup: "To help protect your security, IE has restricted ......". I pressed allow button, my pictures were displayed. However IE shows it again. And it happens again and again. What have I done wrong? Have...