C# Beginners Tutorial - 34 - OpenFileDialogs

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

For those of you who want the file to "Actually" open here:
OpenFileDialog ofd = new OpenFileDialog();
            ofd.Title = "TheNewBoston";
            ofd.Filter = "Text Document(*.txt)|*.txt";
            if (ofd.ShowDialog() ==
            {
                string path = ofd.FileName;
               
            }

xRMxTrojans
Автор

You do an awesome job on your videos. Clear and concise! I appreciate it!

josh
Автор

AOL Instant Messenger...that was a classic in my days. Thanks for the information though!

MrCt
Автор

i have multiple openFileDialog
if i select one and keep rest null then its through error cannot find opendialog1

hussain
Автор

How to do load csv or pdf file to another computer after select the file and click open button ?

vorapobautomation
Автор

the amount of open file dialog in this video is to damn high!

Ciomegu
Автор

pretty good tutorials!! very usefull .... now, can u please do some tutorials about all the prints controls? please :D ....thank you

darktube
Автор

Is there a way to override the theme of the dialog?

straighter
Автор

How do you make it so when you select the file and use it, the stuff inside the file go inside of a textbox ?

gfdfdsfgfsgdgfdgsdfgsdfhsd
Автор

I was playing with the filter and i found out that for All Files is *.* or just **  using . (the dot) is not actually necessary, you could write like this "PNG Image | *png | BIK....and so on

rotaruiulian
Автор

let's say i've selected a wav file. how can i make my program play the wav file i've selected?

Vafy