8
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 creati …
5
votes
3answers
490 views
Setting the start position for OpenFileDialog/SaveFileDialog
For any custom dialog (form) in a WinForm application I can set its size and position before I display it with:
form.StartPosition = FormStartPosition.Manual;
form.DesktopBounds = …
3
votes
5answers
173 views
Getting filesize from OpenFileDialog?
How can I get the filesize of the currently-selected file in my Openfiledialog?
3
votes
5answers
222 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
216 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 an …
2
votes
3answers
216 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 b …
2
votes
3answers
278 views
When does Microsoft.Win32.OpenFileDialog.ShowDialog() return null?
OpenFileDialog's ShowDialog method returns a nullable boolean, set to true if the user clicked OK or false if he clicked Cancel. When does it return null? The documentation does no …
2
votes
3answers
371 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 OpenFileDial …
2
votes
3answers
400 views
Increase number of characters in filename field of GetOpenFileName file selection dialog
Our app allows multiple files to be selected in a file selection dialog which is shown via the GetOpenFileName function (this question also applies to folks using CFileDialog, etc. …
1
vote
2answers
45 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), the …
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++) …
1
vote
1answer
585 views
Opening multiple files (OpenFileDialog, C#)
Hi all,
i'm trying to open multiple files at once with the OpenFileDialog, using FileNames instead of FileName. But I cannot see any examples anywhere on how to accomplish this, n …
1
vote
1answer
251 views
OpenFileDialog does not browse the folders under .NET CF
I have an WinMo app and I would like to open a file from the storage card. The file is NOT in the root but within the folder structure. I thought OpenFileDialog would do the trick …
1
vote
1answer
329 views
File Open Dialog with Encodings combobox under Vista.
I currently use the TOpenTextFileDialog as it has the Encodings option, but under Vista it appears using the older open dialog style. I'd like the new style open dialog, but with …
1
vote
3answers
516 views
Invalid Pointer Operation
I have a form that contains a TOpenDialog component (OpenDialog1) and a button.
OpenDialog1 has the ofAllowMultiSelect (of Options) property set to true.
Upon clicking the button …
