0
votes
2answers
33 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?
1
vote
2answers
43 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++) …
0
votes
2answers
32 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 …
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.
0
votes
0answers
28 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 …
2
votes
3answers
203 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
183 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 …
0
votes
2answers
119 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 …
2
votes
3answers
357 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 …
0
votes
1answer
79 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.Filte …
0
votes
1answer
362 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 …
0
votes
4answers
107 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 …
0
votes
1answer
138 views
Does OpenFileDialog.Filenames have a limit?
I have a small helper app that I use to "inject" scripts into html pages.
I have an openfiledialog promt and i select all the html files in that directory (1403 files) and no matt …
3
votes
5answers
169 views
Getting filesize from OpenFileDialog?
How can I get the filesize of the currently-selected file in my Openfiledialog?
