FolderBrowserDialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

There seems to be some sort of bug in this object with the Description property. When set to a string of text it does not display the first time the control is 'opened'. If user clicks Cancel and then re-opens control, the string of text is now displayed.

Anyone else experience this?
 
It works fine here.

folderBrowserDialog1.Description = "Test";

folderBrowserDialog1.ShowDialog();
 
Back
Top