Tagged Questions

0
votes
1answer
20 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
42 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
46 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
36 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
0answers
31 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 …
2
votes
3answers
217 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
220 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
132 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
80 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
2answers
392 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
4answers
113 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 …
0
votes
1answer
144 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 matter what i do i see …
3
votes
5answers
173 views

Getting filesize from OpenFileDialog?

How can I get the filesize of the currently-selected file in my Openfiledialog?
1
vote
1answer
587 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 …

1 2 3 next
15 30 50 per page