0
votes
1answer
30 views
Does the caller need to Release the IShellBrowser* obtained via the undocumented WM_GETISHELLBROWSER (WM_USER+7) message?
Several have pointed out that there exists an undocumented message that retrieves the IShellBrowser interface pointer from the common dialog HWND for the file open & save dialogs.
But there is …
2
votes
2answers
158 views
Delphi 7 and Vista/Windows 7 common dialogs - events do not work
I'm trying to modify the Delphi 7 Dialogs.pas to access the newer Windows 7 Open/Save dialog boxes (see Creating Windows Vista Ready Applications with Delphi). I can display the dialogs using the …
1
vote
2answers
33 views
OpenFileDialog always shows *.URL (Internet Shortcut files)
My OpenFileDialog has one single Filter which is also the DefaultExt. I wonder why, when the dialog opens, I also get all the Internet Shortcuts listed (it is OK to get the shortcuts to folders, for …
0
votes
3answers
59 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 …
0
votes
2answers
82 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?
0
votes
1answer
30 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 …
2
votes
2answers
67 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
128 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++)
{
…
2
votes
3answers
271 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
318 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
510 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
48 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
171 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 …
0
votes
1answer
101 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 …
1
vote
1answer
704 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, not even on MSDN. As …
