Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは動作しません:
fbFolderBrowser.RootFolder = @"C:\A Folder I Created\Test1\";
ユーザーがボタンをクリックしたときに、上記のフォルダーを選択したいと思います。
どうすればこれを行うことができますか?
あなたの代わりにRootFolder設定する必要がありますSelectedPath-
RootFolder
SelectedPath
fbFolderBrowser.SelectedPath = @"C:\A Folder I Created\Test1\";
もし私が正確に覚えていれば:
fbFolderBrowser.InitialDirectory = @"C:\A Folder I Created\Test1\";