I would like to create a folder in VB from a textbox input e.g. I have one "browse " button, a textbox1 and a "create folder" buttons, I want to create a folder from browsing to the file system location where the user would like to create the folder…
I have a batch file with one part that opens a folder chooser dialog for the user to select a location to copy. At first i thought the problem was i wrote the code on my desktop, and them moved it to its final location on a server. But now im…
Working on a website solution and need to give user links for different folders on local computer. (Open explorer fileview)
I have worked two ways.
1) Simple link looking somting like this:
I have tried this solution and it works beautifully FolderBrowserDialogEx
but now I have to add another button which will be placed next to editbox and upon clicking will show a particular folder always. I have tried this so far.
In the…
I want to do some validations when clicking on OK button.
For example, if selected folder is temporary folder, when I click on OK button, error message should be displayed and the Folder Browser Dialog should not be closed.
How can I do, this…
I need a control like SaveFileDialog that lets me choose a directory instead of a file. It should also let me specify the directory by pasting text. SaveFileDialog does not allow this.
I have tried FolderBrowserDialog, but it does not meet my…
I'm able to select files through through folder browser dialog but I need to show the selected file in treelist control (Note: I'm using WPF and devexpress controls).
How can I achieve this? Please check the image:…
I would like to display file folder structure exactly like in Google Drive and with the proper animation. When we are drilling down then the resulting view enters from the right and vise-versa.
NB: Showing the structure is not the question rather…
What I'm trying to do here would seem to be pretty simple. At the start of my SSIS package I want to set a variable to a directory that the user is prompted for. Here's my VB code:
Public Sub Main()
Dim fldDialog As FolderBrowserDialog = New…
Using VS2013 with VB.NET and using the FileBrowseDialog(), I can't seem to see the property to have it use either the last location selected OR be able to specify a directory to start in based on the contents of a text box.
The code works great for…
With folderBrowseDialog you can show the top level of the folder which will be shown initially. However that feature is not there on openFileDialog.
I want to let the user open files from a specific folder only. How do I specify the folder?
I am using a web page in which the user can browse and select folders. The folderbrowsedialogu works properly but the dialog appears behind the active page. The user has to either minimize or use alt-tab to select the browse dialog.
How can I bring…
I am opening a FolderBrowserDialog for the user to select a folder. However I only want the user to be able to select folders that have an XML file in it. Is there a way for me to achieve this?