Top "Openfiledialog" questions

The OpenFileDialog is a (component) class in the .NET Framework that prompts the user to open one or multiple files.

How to use OpenFileDialog to select a folder?

How to use OpenFileDialog to select folders? I was going to use the following project: https://github.com/scottwis/OpenFileOrFolderDialog …

c# .net dialog openfiledialog
Setting the filter to an OpenFileDialog to allow the typical image formats?

I have this code, how can I allow it to accept all typical image formats? PNG, JPEG, JPG, GIF? Here's …

c# winforms openfiledialog
Open file dialog and select a file using WPF controls and C#

I have a TextBox named textbox1 and a Button named button1. When I click on button1 I want to browse …

c# wpf textbox openfiledialog
Quick and easy file dialog in Python?

I have a simple script which parses a file and loads it's contents to a database. I don't need a …

python openfiledialog
How do you configure an OpenFileDialog to select folders?

In VS .NET, when you are selecting a folder for a project, a dialog that looks like an OpenFileDialog or …

.net windows winapi openfiledialog
Reading a text file using OpenFileDialog in windows forms

I am new to the OpenFileDialog function, but have the basics figured out. What I need to do is open …

c# openfiledialog
How to get file path from OpenFileDialog and FolderBrowserDialog?

Hey there i started learning C# a few days ago and I'm trying to make a program that copies and …

c# openfiledialog folderbrowserdialog
Load a bitmap image into Windows Forms using open file dialog

I need to open the bitmap image in the window form using open file dialog (I will load it from …

c# winforms bitmap picturebox openfiledialog
Multiple file extensions in OpenFileDialog

How can I use multiple file extensions within one group using OpenFileDialog? I have Filter = "BMP|*.bmp|GIF|*.gif|JPG|*.…

c# winforms openfiledialog
Open a workbook using FileDialog and manipulate it in Excel VBA

I am learning how to use Excel macros and I found this code: Dim fd As Office.FileDialog Set fd = …

vba excel openfiledialog