FolderBrowserDialog于2005年挂起

FolderBrowserDialog于2005年挂起

本文介绍了FolderBrowserDialog于2005年挂起的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我创建了一个使用FolderBrowserDialog的应用程序。 构建应用程序,安装并运行它,并使用表格 使用对话框,它挂起文件夹选择并进入无响应 调试时,它会在执行提取 选中的行时挂起文件夹没有进一步解释在执行标有<<<<<<<<<<<<<<<<<<<<<<<下面。当我跨过 行时,它会挂起。 使用FolderBrowserDialog1 ..RootFolder = Environment.SpecialFolder.Desktop ..SelectedPath = Environment.SpecialFolder.Desktop ..Description ="请选择所需的模板... ; 如果.ShowDialog = DialogResult.Cancel那么 退出子 结束如果 如果.ShowDialog = DialogResult.OK那么 DestinationPath = .SelectedPath<<<<<<<<< ; 结束如果 结束 我注意到在VS2005中使用下载的exe创建了相同的行为 文件夹浏览器---因此,我有两个indenpent实例的 browserdialog挂起,一个不是我的创作。 任何见解? - 脾气暴躁的航空人 解决方案 I have created an app that makes use of the FolderBrowserDialog.Upon building the app, installing and running it, and invoking the formusing the dialog, it hangs upon folder selection and goes "not responding"Upon debugging, it hangs as well upon executing the line that extracts theselected folder without further explanation. All looks well in the debuggerprior to executing the line marked with <<<<<< below. When I step over thatline, it hangs.With FolderBrowserDialog1..RootFolder = Environment.SpecialFolder.Desktop..SelectedPath = Environment.SpecialFolder.Desktop..Description = "Please select the desired template(s)..."If .ShowDialog = DialogResult.Cancel ThenExit SubEnd IfIf .ShowDialog = DialogResult.OK ThenDestinationPath = .SelectedPath <<<<<<<<End IfEnd WithI noticed the same behavior from a downloaded exe created in VS2005 usingthe folderbrowser --- thus, I have two indenpent instances of thebrowserdialog hanging, one not of my creation.Any insights?--Grumpy Aero Guy 解决方案 debugger that 这篇关于FolderBrowserDialog于2005年挂起的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-20 15:26