我在Windows 10中使用process.start时遇到错误,该功能在我的Windows 7中工作,但在Windows 10中无效,按钮的代码如下所示
Dim PDFFilePath As String = "C:\1.pdf"
Process.Start(PDFFilePath)
我录制了短片
Windows 10视频
https://sendvid.com/i8w8q8nm
Windows 7视频
hhttps://sendvid.com/as3lkm1g
从任务管理器,我可以看到该过程已启动,但我无法从屏幕上找到窗口
答案 0 :(得分:0)
Windows 10默认使用它的应用程序来阅读pdfs。
将pdf的默认程序更改为acroboat reader或指定
Dim PDFFilePath As String = "C:\1.pdf"
Dim adobeAcrobatLocation as String = "..wherever.."
Process.Start(adobeAcrobatLocation, PDFFilePath)