C# - Get Path Of All Open Explorer Windows?
Jan 5, 2012
I want to list all open Windows Explorer windows with their active path in a ListBox. The app should refresh the ListBox if the explorer window is navigated to a different path.
For e.g. two explorer windows are open. One is navigated to C:Windows and the other is navigated to D:Stuff. When the app it run, it adds C:Windows and D:Stuff to the ListBox. Then, the user navigates to a different folder in one of the open explorer windows like C:Windowssystem32. The app should then refresh the ListBox and list C:Windowssystem32 and D:Stuff instead.
View 1 Replies
ADVERTISEMENT
Apr 11, 2009
I want to make my program so when you click button2 an explorer window opens up going to C:Users. How DO i do that?
View 7 Replies
Feb 15, 2012
how to get the current windows explorer path in vb.net windows application?
View 1 Replies
Jan 24, 2012
How to get the current windows explorer path in vb.net windows application?
View 2 Replies
Jan 24, 2012
how to get the current windows explorer path in vb.net windows application?
View 3 Replies
Jan 24, 2012
How to get the current windows explorer path in vb.net windows application?
View 1 Replies
Aug 25, 2009
I have use VS2005, I have open windows explorer from code. when i click on search button it open New windows, and in this I click on All files and folders in Look in : combo by default C: and D: drives are set.
[Code]...
View 1 Replies
May 25, 2009
I have use VB.Net 2005, I want to create an application , in this I want to open a particular Folder (for example D:/MyFolder) , in windows explorer and windows explorer open in some one vb.net control(which I can not know, it may be Panel) and control windows explorer tool bar by vb.net( enable and disable).
View 4 Replies
Jan 25, 2012
How do I open a Windows 7 Library like Documents, Pictures, Music, Videos and all other custom libraries from my app? I tried opening explorer.exe LibrariesDocuments but it doesn't work.
View 6 Replies
Oct 29, 2010
I have made an alternative OS and i wan't it to open Windows Explorer. I have tried Shell (C:WindowsExplorer.exe) and it works,but the startbar appears at the bottom of the screen when I dont want it to.
View 1 Replies
May 30, 2009
I have use VB.Net 2005, I want to create an application , In this I want to open a windows explorer on a form load event and close this windows explorer when my application will close or on formclosing event .
View 14 Replies
May 21, 2011
I have made a text editor in vb2008 and I need it to get it open a text file when I double click it in windows explorer
View 6 Replies
Jun 30, 2011
I have a winform application and this winform application has created few files. I want to implement "find target" function in my application to show those files. Those files located in a same folder. See the picture:Let's say that I have created few files in "C:Test" folder and this folder has this file: "C:TestFile1.txt". How to create "find target" functionality using VB.NET?
View 2 Replies
Nov 5, 2010
Assuming I have a folder structure like:
[Code]...
This works fine, unless I have Windows Explorer open and I'm looking at the 'MySubFolder' directory. Then I get an IOException The directory is not empty. - clicking OK dismisses this and then the folder structure is not deleted. Any thoughts on how I can get this to perform correctly (i.e. delete), even when running this code while having the folder struture open in Windows Explorer?
View 4 Replies
Aug 30, 2009
1- I want to know what's the windows service project and how i can use it.
2- I want to know how i can making tool bars for my windows explorers , IE explorer and to fire fox internet explorer.
3- I want to know how i can making add-ons for my VS 2005.
4-Can i change my Form Opacity Without Changing My controls Opacity
View 1 Replies
Aug 1, 2010
I want to make a program that is similar to Windows Explorer. It will have a button that when you click it it opens a FolderBrowserDialog and it will have an area that displays the contents of the selected folder. I want to have a label that displays the current folder path (i.e. 'USERDocuments...') and I also would like a feature to search all files on the computer.Also, is it possible that when I click on a file in the contents of the selected folder it displays its information (i.e. Name, Size, etc.)? And can I also make it so that if you double click on another folder in the current folder's display it opens that folder? And can I have a button to go up one directory?
View 1 Replies
Jun 2, 2010
I want to open explorer to a specific destination but both shell() and process.start() are not opening explorer. They both open other applications like calc and notepad though. It works fine when debugging but not after I publish.
View 6 Replies
Aug 7, 2011
I've noticed that when you click on a web page in Windows Explorer, or open a file in general, and the default application to open it is internet explorer, ie opens and opens the file. However, when I tried this on my Web Browser it opened, but ignored the file and went on its usual routine. How can I get my Web Browser to open and open the file that was clicked on in explorer?
View 1 Replies
Aug 14, 2011
I can only get the path to the folder where my application is located. How can I get the path to the active Explorer folder?
View 4 Replies
Jul 31, 2011
an editor that can save text files and html files,my editor is a tab pages for every files opened and created. Can you hep me to fix some problem. When open a html file, the file is opened in the tab of a tabcontrol, the problem is that is when i open the html file, i want to get the path of the file then when i click the button run on my form, the html file that is the selected tab that holds the html file will open in Internet Explorer. Ihave teh code in in opening int he code below is for opening IE and file
Shell("C:Program
FilesInternet Exploreriexplore.exe C:abc.html")
View 1 Replies
Nov 21, 2011
I want to add an option to the explorer context menu that appears whenever a user right clicks on a folder or drive. So I add the following reg key:
HKEY_CLASSES_ROOTFoldershellMyProgramcommand
"(Default)" value within is set to:
C:MyProgram.exe "%1"
and all works fine for folders, the %1 gets expanded to the relevant folder path that the user clicked on. However, when right clicking on a drive (e.g C drive in My Computer) the fact that the path then has a trailing backslash seems to seems to mess things up as the backslash acts as an escape character and makes the last quote mark get passed in as part of the command line (and the backslash is removed completely).For example if the following command is called from a context menu generated by the user right clicking on their C drive: "MyProgram.exe" "%1" You would expect the final command line to be this:MyProgram.exe C:But what actually happens is this: MyProgram.exe C:" I can add a backslash in manually (e.g "%1") but then it works fine for drives and not for folders.
View 5 Replies
Nov 11, 2009
nothing
View 2 Replies
Jun 14, 2012
I'm using acrobat that returns unix paths instead of windows path's. So im wondering if there is a way in vb.net to convert the path to windows path.
i tried using:
docs(i) = javaScriptObj.path().ToString.Replace("/", "").Substring(1)
position = docs(i).IndexOf("")
docs(i) = docs(i).Substring(0, position) + ":" + docs(i).Substring(position + 1)
this only works on local files, but fails when im starting to use network drives.
View 1 Replies
Nov 29, 2010
Well now i have an issue which is pointing in the use of "path's" physical and network.I have a SQL server on a Server machine and i have a desktop machine used as client.I'm runing from my client machine a stored procedure in order to add a streaming data base.But also before i run this procedure i run another one which prepare the desired "path", this procedure takes:
myPath="\ServerSharedFolderSQL
in order to run the first procedure i have to turn myPath in each physical name:
myPath="DriveLetter:PublicWorkFilesSQL"
Now my Issue is how i will have the physical path, which is build it on the server and which it's from very difficult (to imposible) to know it? Basically i need a function which will return me the physical path, which the implementation it's not knowing to me. My developing environment is vb.net 2010?
View 2 Replies
Aug 27, 2010
So i am having a bit of a problem.. What i want is for my application to show the panel in the from to display a windows explorer selection.. Look here
You see the panel 2 in here... Well the panel 2 needs to display this...
Is this possible you know like with a library or an extension or something.. Or do i need to make my own System for viewing files..???
View 1 Replies
Aug 1, 2011
I have 2 functions for opening and closing Windows Explorer, which is still working fine with Windows XP and even Vista. The same functions not working on Windows 7. Following are the functions:
Dim HTProcess
As New Hashtable
Private
[Code].....
View 1 Replies
Jul 9, 2009
I have 2 functions for opening and closing Windows Explorer, which is still working fine with Windows XP and even Vista. The same functions not working on Windows 7
Dim HTProcess
As New Hashtable
Private
[code]...
And 'CloseFolder' functions not able to close the Windows Explorer in Windows 7
View 11 Replies
Aug 11, 2011
Using VB 2010 Express, I will try to explain what I want to achieve:1. The user installs my program.2. In an Explorer window (Vista/Win7) the user will right click any file.3. The program checks if there is an item called "MyApp" in the context menu (i.e. the menu with for instance the "Open with..." item). If not, then create the "MyApp" item which launches "TheRealApp.exe" that the user installed. Place the item after the "Print" item.
View 1 Replies
Nov 28, 2009
I code to drag files from windows explorer to a listbox. The code works in XP and Vista, but not Windows 7. In Win 7
Private Sub ListBox1_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles ListBox1.DragEnter e.Effect = DragDropEffects.All
End Sub does not respond.
View 1 Replies
Aug 11, 2009
Is it possible to open explorer in a vb form?
View 2 Replies