explorer

How can I add the Thumbnails view to TShellList in Delphi?

Hi, The TShellList component is based on TListView which (unfortunately) doesn't have in its ViewStyle property a 'vsThumbnail' (or similar). How can I display thumbnails in TShellList in a similar manner in which Windows Explorer does? A simple Delphi snippet would be appreciated. TIA ...

FileBrowser/FileSelector for WPF

Hello, does anybody know, if there is a WindowsExplorer-like filebrowser which I can include in my WPF-window. I don't want use OpenFileDialog. I have searched a bit and only found simple directory-trees or lists. I want to have an interface like it is in OpenFileDialog. Would be great if there are any advices, Greetings, Martin ...

Windows Explorer Context Menu Application with Multiple Arguments

Hi, i have read heaps of articles about how to add custom right click context menu's to windows explorer but all of them only work if you have only 1 single file highlighted. The app i am writing is a utility app and i would ideally like it to work on %n number of files. Can this be done? ...

How do I bind a TreeView node to a specific view in an Explorer-like UI?

I'm sure there is a simple answer to this but I can't seem to find it. Most examples for binding TreeView nodes are about using a ListView to show the node's details. In the scenario I am working on I've got a TreeView data bound to an Xml document using a simple MVVM pattern. As each node is selected in the TreeView I want to show a dif...

Simplemodal with IE and Iframe

First of all thanks to Eric MArtin for SimpleModal. I've started using it developing in mac environment. When i loaded to my hosting server and then checked the results in IE, the overlay completely ignores the embedded iframe in my page. It appears as if the iframe has a higher Zindex than anything else on the page, so i checked. Well...

z-index issue in IE7

hi there we have a z-index problem with a div that's supposed to be over a particular div. the div named (house-over-banner) is absolute, whilst the one below it is relative. In Firefox, IE6, 8 - it shows all good! Just in IE7, it doesn't! the link is www.showhome3d.com.au. - it's the house over the baner on the right hand side of the ...

Custom <ul> image bullets not showing up in Internet Explorer?

Here is the code I am using: .customBulletList { list-style-image: url(images/bullet.png); } The weird thing is that it shows up in Firefox, Chrome, Safari, and Opera. Is this CSS property not supported in IE or something? Thanks in advance. ...

Edit file name with vim

Is there a way to edit file names with vim using Explorer or NERDtree? ...

Explorer Integration in the Context Menu but using the already running instance

Hi, I want to check for the existence and if it doesn't exist add some actions in the Explorer's right click (context) menu. Besides of the above requirement (for which one can find easily solutions on web) I want to add one more: Suppose that I register the following commands: "Command #1" - triggers 'C:\MyProg.exe /cmd1' "Command ...

Notepad++ Explorer plugin

I'm currently using the notepad++ as my code editor..since it was so quick to start i'm pretty much like this..but i have a problem regarding the explorer plugin..i can't add the network drive so that i can access the shared document from other workstation. only the drive C and D showed up. How to show the network drive in the explorer p...

Wix: How to create a desktop shortcut pointing to a virtual drive under Computer

I would like to add a shortcut on the desktop which points to a virtual drive mounted under "Computer". This drive doesn't have a letter associated with it. I've successfully added a link to an executable, but all tries with Explorer has failed. When I add this shortcut manually it gets the following shortcut (in properties): Computer\My...

Open a folder and highlight a particular file with WPF

Is there a way to launch an Explorer window and highlight a file in that folder with WPF ? I've already tried the following : Process ExplorerWindowProcess = new Process(); ExplorerWindowProcess.StartInfo.FileName = "explorer.exe"; ExplorerWindowProcess.StartInfo.Arguments = ConfigFile.File.FullName; ExplorerWindowProcess.Start(); ....

Sever Explorer and Visual Studion Editing Store Procedure

If there a way to add code to the editor before the store procedure is opened for edit? I would like to include a "Header" to the "ALTER PROCEDURE..." like IF EXISTS... ALTER PROCEDURE ...

Display icon overlay without restart explorer

Please help me how can I display the icon overlays without restarting the explorer.exe? The problem Im in stuck here is the fact that I must always close the explorer.exe in taskbarmanager and re-open it. I want the way no need to restart shell like that. Any way in C++ ? ...

vbscript to launch internet explorer, navigate to URL and click button

I have been scraping the Internet for some solution to this problem with no success. I need to use vbscript to launch a URL within Internet Explorer and click a button. The challenge that I am having is that the button has no id or name. It only has a specified type and value. I have tried different methods with no success. I would love ...

Associate Java class-files to run on double-click on Windows

If there's one thing that annoys me about Java it's that you can't double-click a class file so as to run. I assuming there's an entry in the registry that has to be edited to do this but I haven't a clue. So, as it says on the tin. Does anyone know how to associate Java class files to run on double-click on Windows (I aiming for Window...

Custom Windows Explorer Toolbar button

Hello, I am trying to create a custom Windows Explorer Toolbar Button. eg: the scenario is to create a custom button to start notepad.exe; when the button will be clicked. I want this to appear beside the 'Properties' button that appears in the Windows Explorer Toolbar. I have done the same thing for Internet Explorer 7 by adding th...

Internet Explorer jquery :contains issue

I'm trying to parse a simple xml document with jQuery. Does anyone know why the following works fine in Chrome and Firefox but not in Internet Explorer (7 and 8)? var selBunit = $("#bunit").val(); $(bunitXml).find('bunit bname:contains('+selBunit+')').parent().find('team') Below is a snippet of the xml. So basically I'm trying to retu...

VB6 activex runs only with administrative privileges

Hi Several years ago we have written VB6 activex control that is hosted by a webpage. Since then for many users it stopped working unless the user logged on with administrative privileges. The website is set to "Trusted sites" in IE. The IE security settings are the same for both Admin and User. The control cab file is signed. The con...

How to get the explorer right click menu in Winforms ListView?

I am using a Winforms ListView to show some files, but other than showing the files like explorer does, I want to have the same explorer right click menu when you get when you right click an item inside. Is this possible? How do I enable it for my ListView app? ...