本文介绍了系统诊断过程开始查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序已经在后台编写定时的Excel工作表.我现在已经导出了Excel工作表,并希望从我的应用程序中将其打开.

因此使用了process.start

System.Diagnostics.Process.Start(FilePath);

问题是在打开文件后,控件没有返回到代码,并且我的打开文件对话框挂起.

因此,我必须关闭该应用程序并重新启动它.

请提出一个解决方案.

My application is already writing a timed excel sheet in the background. I have now exported and excel sheet and want to open it from my application.

so for it is used process.start

System.Diagnostics.Process.Start(FilePath);

Problem is after the file is being opened, control does not return to the code and my open file dialog box hangs.

Thus i have to close the application and restart it.

Please Suggest a solution.

推荐答案


这篇关于系统诊断过程开始查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 05:49