Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
5k views

OpenDialog for WPF

I just started with WPF. Moved from Window Form. Where do those openDialog, saveDialog gone? And a bunch of stuff.
5
votes
5answers
3k views

JFileChooser embedded in a JPanel

EDIT: I've posted a clarification as an answer, see below for more details. I am writing a java program that needs a file open dialog. The file open dialog isn't difficult, I'm hoping to use a ...
4
votes
1answer
199 views

How to make OpenDialog show modal in Firemonkey?

When I'm calling an OpenDialog from my form on ButtonClick event. The dialog does not shows as modal and is also displays in taskbar (in WindowsXP). I can return to main form and click Open again and ...
3
votes
4answers
236 views

Customizing OpenFileDialog

I am working on winforms application in C#. What I want to achieve is to get a file from user for which i am using the following code: OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() ...
3
votes
1answer
895 views

VBScript file open dialog that works in XP and Vista?

In XP, you can use VBScript with the UserAccounts.CommonDialog object to bring up a File Open dialog (as described here), but apparently this does not work under Vista. Is there a VBScript method for ...
3
votes
1answer
186 views

How to disable automatic appending of wildcard pattern in Vista file open dialog

I'm using a file open dialog to chose image files for further editing. The filter list contains an "All supported formats" entry which represents a long list of file formats. Since Vista automatically ...
2
votes
2answers
137 views

.net windows api: get or set most recent directory used by file open dialog

Is there a way to set or get the initial directory used by the vista file open dialog without setting the InitialDirectory property on the file open dialog? I want my WPF to (on startup) set the ...
2
votes
2answers
463 views

Is it possible to disable the OpenFileDialog cancel button?

Is it possible to set the OpenFileDialog's cancel button enable = false? If so, How? I'm using winforms Edit OpenFileDialog file_open_dialog = new OpenFileDialog();
2
votes
2answers
121 views

Embeddable FileOpenDialog

I am looking for a control to be able to embed the functionality of the FileOpenDialog without the idea of using a modal dialog. Does something like this exist already? (ideally within .Net 2.0 ...
1
vote
1answer
43 views

C# using FileOpendialogbox control within my form class

I have a weird requirement. I need to use FileOpenDialogBox control within my form. I mean not as other window but as control of a form. I know many applicationss that doing it. How can I do it in C#? ...
1
vote
2answers
201 views

Javascript, html file open dialog

I am working with file upload to the server using html tag input type=file when i click on the browse button it shows me a file open dialog. my question is, can i filter the files by passing the ...
1
vote
1answer
486 views

Different file open dialog boxes on Windows XP, Windows Vista and Windows 7

I want to develop an application that works on all three versions of Windows XP, Vista and 7. The application allows people to select files to open and allows them to save the files after some ...
1
vote
2answers
315 views

How to open JFileChooser with predefined size

chooser = new JFileChooser(); chooser.setSize(300, 200); if (chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) { ....... } This doesn't work. Always opens in default size.
1
vote
2answers
279 views

getOpenFileNames dialog is not centered to the main window

Why the opened dialog is not centered to the main window? void MainWindow::on_FileOpenAction_triggered() { QStringList fileNames = QFileDialog::getOpenFileNames( this, "Open ...
1
vote
2answers
305 views

Opening a File Dialog from within a class module in vb6

I want to know how can we open a file dialog from withing a class module in vb6. I know how to do in forms, but I have to open it from within a class module.
1
vote
2answers
307 views

How To: show color option in FontDialog with no underline and strikeout options

I am using FontDialog control in vb.net application. When I set its ShowColor property to true, it shows me StrikeOut, Underline and Color option under Effects group. I need only color from these ...
0
votes
2answers
157 views

How to open a default dialog for window if ShellExecute fails due to no file association in C++?

I can use the windows ShellExecute function to open a file with no problems so long as the file has a correct association. If no association exists i would like to use the default windows dialog to ...
0
votes
3answers
385 views

C# WinForms App - Debugging Errors using OpenFileDialog, MultiSelect, Logging

Background: I'm developing a WinForms application using C# with an OpenFileDialog and FileBrowserDialog that is supposed to: Enable selection of multiple xls files. After selection is made, Display ...
0
votes
3answers
168 views

SetThemeAppProperties disables COM Common Dialogs

Calling SetThemeAppProperties with argument which has flag STAP_ALLOW_CONTROLS unset causes CoCreateInstance for Common Dialogs (or at list File Open Dialog, CLSID_FileOpenDialog) to return error ...
0
votes
3answers
685 views

Delphi OpenDialog without letting the user navigate away from the inital dir

I am trying to create an open dialog (in Windows 7) where the user is confined to the initial directory. On the open dialog I have set the optionsEX to [ofExNoPlacesBar] and that removes the bar that ...
0
votes
1answer
181 views

Automate open dialog box

Is there any way to automate a opening files with open dialog box on Mac OS? The application asks user to open files with the standard open dialog box. But I need open files automatically. The idea ...
0
votes
3answers
485 views

How do I present an open folder selection dialog in Perl?

How do I open folder selection dialog in Perl?
0
votes
6answers
667 views

opendialog.onhint crash

I have checked 100% I am closing all handles on a file I recently created. But when I call "opendialog.execute;" the dialog pop up as usual but on the mouse over hint of a recently created file the ...