7
votes
7answers
1k views
Select either a file or folder from the same dialog in .NET
Is there an "easy" way to select either a file OR a folder from the same dialog?
In many apps I create I allow for both files or folders as input.
Until now i always end up creating a switch to …
0
votes
1answer
38 views
Open File Dialog Box
Hello,
I'm learning Objective-C and trying to develop a simple zipper application, but I stopped when now, when I need to insert a button at my dialog and this button opens a Open File Dialog that …
0
votes
2answers
414 views
Simple silverlight open-file-dialog errors
A while back I wrote a silverlight user control which had a csv import/export feature. This has been working fine, until recently I discovered it erroring in one scenario. This may have been due to …
0
votes
1answer
21 views
open file dialog not working in vista and 2008 envir
i am using Vista . I designed MSi file through Visual Studio 2008 Setup and deployment project in which I added one custom action. In the custom action, I am opening OpenFile dialog. This Open File …
0
votes
2answers
47 views
changing button text in OpenFileDialog in C#.net
Does anyone knows how to change text on button in OpenFileDialog in Windows.Forms in C#.NET?
2
votes
2answers
49 views
Obtain the true name of the currently select file in the common file dialog?
One can get the text of the selected item in the list-view of a common dialog. But one can NOT get its PIDL, and if the user has chosen to hide known extensions (the default), then one cannot really …
1
vote
1answer
119 views
Weird acting loop in C#
Note: I added actual code snippets. Just scroll to end.
// files is created by a OpenFileDialog.
public void Function(String[] files, ...)
{
for(int i; i<files.Length; i++)
{
…
0
votes
2answers
39 views
Silverlight OpenFileDialog DoEvents equivalent
I'm processing large files after they are selected by the user. My code looks like the following:
if (FileDialog.ShowDialog() == true) {
// process really big file
}
This freezes up the UI so …
3
votes
5answers
223 views
Open Dialog preserving settings
How does one preserve the settings in the Open Dialog box? For example, I would the Open Dialog to remember that I chose the Details view and sorted by date modified.
2
votes
3answers
224 views
C# OpenFileDialog Lock To Directory
Hello everyone! I am making a software that needs to ONLY be able allow people to select files and folders using the OpenFileDialog that are in the same directory as the program and that are in deeper …
2
votes
3answers
244 views
WPF OpenFileDialog with the MVVM pattern?
I just started learning the MVVM pattern for WPF. I hit a wall: what do you do when you need to show an OpenFileDialog?
Here's an example UI I'm trying to use it on:
When the browse button is …
0
votes
2answers
141 views
MFC Open Folder Dialog
In MFC, is there an Open Folder Dialog? That is, rather than choosing a filename, it chooses a folder name? Ideally, I'd like it to be the way Visual Studio does it when navigating for a "Project …
2
votes
3answers
384 views
Why does OpenFileDialog change my working directory?
Why does OpenFileDialog change my working directory? Should i assume many func in System.Windows.Forms will change my working directory?
OpenFileDialog open = new OpenFileDialog();
…
0
votes
1answer
84 views
Open a web folder (Sharepoint 2007)through openFileDialog
I have the following snippet of code written in C#:
openFileDialog1.InitialDirectory = "\\\\fwm-storage\\users\\" +
curUser + "\\My Documents\\My Pictures";
openFileDialog1.Filter = "All Files …
0
votes
4answers
116 views
Is it never possible to get the FullName from a file using Silverlight OpenFileDialog?
Hi there,
I want to get the fullname from a file on Silverlight OpenFileDialog, when I try that, Silverlight throws me an error.
I saw there is an attribute on FullName saying it is [SECURITY …
