tags:

views:

48

answers:

3

Hi all

I have seen that there is a folderBrowserDialog but couldn't see one for files .

I should implement one myself or there is something built in ?

Thanks.

+2  A: 

You want the OpenFileDialog class

This class allows you to check whether a file exists and to open it

ChrisF
+4  A: 

Use the OpenFileDialog class.

Rune Grimstad
A: 

There is OpenFileDialog which gives you a file chooser that looks something like this:

OpenFileDialog

Colin Pickard