I'm trying to present the user with a folder dialog to pick a destination directory when they click a button.
I can't get the sub that handles this to show the dialog.
I've stripped down my sub to just the following bare bones code and it still hangs and doesn't show the dialog. How can I debug this?
Thanks,
Jeff
I can't get the sub that handles this to show the dialog.
I've stripped down my sub to just the following bare bones code and it still hangs and doesn't show the dialog. How can I debug this?
Code:
Private Sub Button13_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button13.Click
[indent]Dim folderBrowserDialog1 As New FolderBrowserDialog
folderBrowserDialog1.ShowDialog()
[/indent]
End Sub
Thanks,
Jeff