A User Interface (UI) that provides a dialog box, to open file(s). Also known as `OpenFileDialog`.
Questions tagged [fileopendialog]
104 questions
2
votes
0 answers
FileOpenPickerUI: prevent deleting file when user clicks on image in the basket
I'm using Windows.Storage.Pickers.Provider.FileOpenPickerUI to implement an UWP app that allows taking multiple pictures.
The thumbnails automatically appear in a basket on the bottom of the screen (see screenshot below). When the user clicks on a…

Peter
- 533
- 1
- 6
- 17
2
votes
6 answers
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 entire thing crashes with a out of bounds error.
I…

Arthur
- 3,376
- 11
- 43
- 70
2
votes
0 answers
Common Item Dialog via COM Interop and _RemoteHandle - how?
I am trying to use customizable File Open Dialog in my C# application, and I found out that Common Item Dialog provides easy API for customization. However it requires some COM Interop magic, and since I am complete noob when it comes to COM I think…

Maciek
- 1,696
- 12
- 19
2
votes
2 answers
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 framework, C#).
overpalm
2
votes
2 answers
Run QFileDialog::getOpenFileName without separate event loop?
I'm using QFileDialog::getOpenFileName right now. However, as suggested in this article, this crashes when the main application closes while the dialog is open. You can see an example of how to reproduce the crash here:
int main(int argc, char…

Jan Rüegg
- 9,587
- 8
- 63
- 105
2
votes
4 answers
Throw and Catch Custom Exception
I have a method to load a customer file by choosing it from the File Open Dialog Box and it works, except for when I click the Cancel button. It still loads the selected file even if I press the Cancel button. I want to load a Custom Exception if I…

Luke_i
- 163
- 1
- 2
- 13
1
vote
3 answers
openfiledialogue in c# is selecting multiple values but its selecting the last selecteditem as the first
Can anyone guide me as I am facing this issue?
I have a app in which I can bring items through a browse button, now when a user selects multiple files , though it selects them and add them (because multiselect = true) but it is selecting the last…

user1100199
- 53
- 2
- 4
- 12
1
vote
1 answer
Cordova - how to open a downloaded file with app picker
I would think this is pretty basic but apparently its not. My app is downloading office documents such as XLS, PDFs, Docs, etc - they are downloading just fine and the user can navigate on their phone (using File Manager) to their downloads…

rolinger
- 2,787
- 1
- 31
- 53
1
vote
1 answer
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#?

Barun
- 1,885
- 3
- 27
- 47
1
vote
1 answer
How to check if Open File dialog has been open after pressing a button in a Chrome Browser tab on Python?
I'm trying to automate a process within the OpenSea Create page after having logged in with Metamask, and so far, I have managed to develop a simple program that chooses a particular image file using a path which passes to the Open File dialog…

NoahVerner
- 937
- 2
- 9
- 24
1
vote
1 answer
How to select multiple files in open dialog box in Inno Setup?
These are the two methods in Inno Setup to show file selection dialog,
Wizard Page Method:
[Code]
Var
PageFileDialog: TInputFileWizardPage;
procedure InitializeWizard;
begin
PageFileDialog:= CreateInputFilePage(
wpWelcome,
'Title 1',
…

Codename K
- 890
- 4
- 23
- 52
1
vote
0 answers
Can a shell namespace extension displaying a form receive/pass files to IFileDialogs?
I'd like to show a shell namespace extension in the new (since Windows Vista) IFileOpenDialog and IFileSaveDialog.
These dialogs can apparently display a custom form like the built-in Homegroup screen:
On this form I'd like to show internal files…

Steve
- 2,510
- 4
- 34
- 53
1
vote
0 answers
What are the CLSIDs of the legacy (XP-style) file open and file save dialogs?
What are the CLSIDs of the file open and file save dialogs used before Windows Vista?

Anixx
- 139
- 1
- 1
- 8
1
vote
2 answers
LINQ: sequence contains no elements
i have error sequence contains no element on below line
Microsoft.Win32.OpenFileDialog dialog = new Microsoft.Win32.OpenFileDialog();
dialog.Multiselect = true;
dialog.Filter =
loaders
…

Elahe Farahani
- 23
- 3
1
vote
2 answers
Odoo python fileopendialog
does anybody knows how to open a filedialog on Odoo? I've add a button on a custom view, now I would like to browse for a file on THE CLIENT when this button is clicked.
Any ideas?
Thanks!

Jesse
- 727
- 13
- 44