Folder Browser Dialog

  • Thread starter Thread starter Dustin
  • Start date Start date
D

Dustin

When trying to use a folder browser dialog, my application freezes. I
found this is only when I set the default to "MyDocuments". Has anyone
experienced something similar. I'm thinking it's a Windows issue and not
a VB issue.
 
Dustin said:
When trying to use a folder browser dialog, my application freezes. I
found this is only when I set the default to "MyDocuments". Has anyone
experienced something similar. I'm thinking it's a Windows issue and not a
VB issue.

What code are you using?

I was not able to repro the problem using this code (Windows XP Professional
SP2, .NET 1.1 SP1):

\\\
Dim fb As New FolderBrowserDialog
fb.SelectedPath = _
Environment.GetFolderPath(Environment.SpecialFolder.Personal)
fb.ShowDialog()
fb.Dispose()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top