explorer

submit button disabled cancels form submit

I have a form like this: <form action="lol.php" method="POST"> <input type="text" name="fe" /> <input type="submit" id="submitbtn" value="submit" onclick="this.disabled = true;" /> </form> and in firefox it works perfectly, but in Internet Explorer (latest version) the button goes disabled but the form does not submit. I have also tri...

Drag Drop from .NET application to Explorer

I'm looking to provide users with ability to drag&drop files from grids and other controls in my application into Explorer. Any good samples/articles for that? ...

Creating COM Component in .NET to override IE functioanlity(custom download manager)

Hello, I have to create a custom download manager that will replace a standard download manager in internet explorer. After googling I've learned that I have to create a COM component that implements IDownloadManager interface. As far as I understand I have to create a dll, generate guid for it and register it using regasm.exe utility,...

File manager for ASP.NET MVC 2?

I'm trying to find a way to implement file manager functionality in an mvc 2 application. I've looked at jquery etc for ways of doing this. I have been able to implement a simple upload/download functionality with just an input file button and so on, and I have also tried out jquery File Tree (http://abeautifulsite.net/blog/2008/03/jquer...

Drag & Drop from Windows Explorer into my application’s TextBox

Why is the dragdrop event never entered? private void textBox1_DragDrop(object sender, DragEventArgs e) { Array a = (Array)e.Data.GetData(DataFormats.FileDrop); e.Effect = DragDropEffects.All; Debug.WriteLine("were in dragdrop"); } private void textBox1_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPres...

Jqzoom implementation to Joomla Opera IE problem

Hi everyone! I've implemented the jQzoom plugin in my Joomla based website. It works great on all browsers but IE and Opera, both latest versions. It seems that it's not getting the mouse position correctly. Although I've tested the same layout and options on a non joomla site, everything was fine, so I really don't know. Here's the way ...

NERDtree for Emacs

Surely an alternative or superior package exists for Emacs? ...

How to show Properties Dialog like in Explorer? (in WPF)

Possible Duplicate: How do I display a files Properties dialog from C#? Hello. Is there a way to show the exact (ie. not simulated) Properties dialog in WPF? The one in Explorer's context menu? Thanks ...

Problem loading ASP.NET report in iFrame with Internet Explorer

Hello, I have seen multiple posts and websites regarding this issue, yet none of the solutions / workarounds posted have worked for me. I am trying to load an ASP.NET report into an iFrame. The iFrame will load correctly (across all browsers), but when I run the report, Internet Explorer only will show the following error: "ASP.NET ses...

how do I make my application as fast as windows explorer for rendering files.

I have a folder with a large amount of files inside of it. I want to be able to render each of my files as a button. And when I click on the button something will happen. private void Form1_Load(object sender, EventArgs e) { int x = 10; int y = 10; /// Process the list of files found in the directory. ...

Why can't IE allow a page to login using frames (multiple domains)?

I think I may know the answer to this question but I'm actually looking for some hard evidence/link to a statement from Microsoft on why this occurs. I have a domain name of "www.mycompany.com", which is HTTP. This page soley contains HTML with an iFrame redirecting to "application.anothercompany.com", which is HTTPS. The page that sits...

How do I style text input so it works on internet explorer?

I have tried EVERYTHING to be able to style JUST text inputs with internet explorer. Unfortunately IE doesn't support using [type=text] so that's out of the question. I even added support for http://ie7-js.googlecode.com to my webpage with <!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/trunk/lib/IE9.js"&gt;&lt;/script...

Where can I learn about the "shell:" URI?

I just realised there is a shell: URI, but every search engine seems to think shell: and shell are the same thing. The only thing I've found out is that you can type shell:startup right in explorer (XP & 7 tested) for obvious effects. This is good already because there is no %startup%, but I want to know what else is this capable of. I...

DOM Javascript on Internet Explorer 8

hi everyone, i have a litte probleme with CSS modification on Internet Explorer. When i add an new CSS style in , IE don't reload the page with the new CSS injected. But when I change CSS property of an element it's works ! (This code work perfectly on Firefox !!!) do you have any idea to do that the head modification work ? if(doc...

Login Once to Firefox, Internet Explorer, Safari, Chrome and C# custom client

I have a C# custom application that obtains a cookie using OpenID in the following way:: using System; using System.Windows.Forms; namespace MyNamespace { public class SignIn : Form { private WebBrowser _browser; public SignIn() { InitializeComponent(); } private void SignIn...

How can I get the right click event object file name?

I created a ATL/COM project, and implement the IShellExtInit interface. In the Initialize method, I use the DrapDropFile function to get the file names of the files whose selected in the folder. e.g. 1.In the folder C:\WINDOWS\MyFolder\ contains the files: a.png, b.bmp, c.jpg 2.Right click the "b.bmp". 3.In the Initialize method, I...

jQuery load not updating the document in Internet Explorer

The dreaded IE strike again. :( I've been developing an image selection and upload tool for Tiny MCE using modal dialogs over the last few days. During the script, jQuery's load() function is used a number of times to load external HTML and insert it within a specified div element. Everything has been going ok, even in IE, until about ...

storing file path using windows explorer browser in python

Dear All, I have written some encryption code in python that takes raw input message from user and then encrypts and decrypts it using AES. Now i want to enhance the working and i want that i can open the windows explorer from my code and browse to any file on my computer, select it and when i press OK button the path to file is stored ...

Windows Explorer, shell extension, a new view type.

Hello, Is it possible to write shell extensions that add a new view type to the view menu in Windows 7? For example, at the moment I have List, Details, Tile, Content, etc. in the drop-down, but I have an idea for a new type. I've done a little Google on shell extensions but the examples I see are more related to custom content within...

ASP.NET MVC2 Generated Javascript contains comma that breaks script in Internet Explorer, code inside

I have the following code, which works perfectly fine in every browser except for IE <script type="text/javascript"> if (!window.slider) var slider = {}; slider.data = [<% foreach (var item in Model) {%>{ "id":"<%: item.ImageID %>", "client":"<%: item.ContentTitle %>", "desc":"<%: item.ContentDescription %>" },<%} %> ]; </script> ...