I&#39;ve noticed an issue with the FolderBrowserDialog window from IronPython. When I display it with the ShowDialog method in a compiled script (through pyc.py), it does not show the TreeView of folders. It will display the Description title and the buttons, however. If I run the script straight through the interpreter, it will display the folders just fine. For reference, I also tried the OpenFileDialog and SaveFileDialog, and those show up correctly in both methods. Is this a bug, or am I doing something wrong?<br>
<br>Sample code below:<br><br><b><span style="font-family: verdana,sans-serif;">import clr</span><br style="font-family: verdana,sans-serif;"><span style="font-family: verdana,sans-serif;">clr.AddReference(&quot;System.Windows.Forms&quot;)</span><br style="font-family: verdana,sans-serif;">
<span style="font-family: verdana,sans-serif;">from System import *</span><br style="font-family: verdana,sans-serif;"><span style="font-family: verdana,sans-serif;">from System.Windows.Forms import *</span><br style="font-family: verdana,sans-serif;">
<br style="font-family: verdana,sans-serif;"><span style="font-family: verdana,sans-serif;">dlg = FolderBrowserDialog( )</span><br style="font-family: verdana,sans-serif;"><span style="font-family: verdana,sans-serif;">dlg.Description = &quot;Testing...&quot;</span><br style="font-family: verdana,sans-serif;">
<span style="font-family: verdana,sans-serif;">dlg.ShowDialog( )</span><br style="font-family: verdana,sans-serif;"></b><br>