如何在Visual Studio Express 2010中创建全屏C#Windows窗体应用程序?我试过这个链接,但它只显示了http://pixpipeline.com/d/57a8554712e8.png
我正在尝试启动Store.Client.UI.exe进程,该进程位于:"C:\ Program Files\Intel\IntelAppStore\bin\Store.Client.UI.exe"或"C:\ Program Files"( x86)\ Intel\IntelAppStore\bin\Store.Client.UI.exe"对于像我这样的64位,所以我使用代码:
If My.Settings.instpathtype = 86 Then
Process.Start("C:\Program Files\Intel\IntelAppStore\bin\Store.Client.UI.exe")
Else
Process.Start("C:\Program Files (x86)\Intel\IntelAppStore\bin\Store.Client.UI.exe")
End If
Run Code Online (Sandbox Code Playgroud)
my.settings.instpathtype的位置是计算机是64位还是32位.但是当我运行它时,由于某种原因它不会运行Store.Client.UI.exe.当我进入资源管理器并键入"C:\ Program Files(x86)\ Intel\IntelAppStore\bin\Store.Client.UI.exe"时,它运行Store.Client.UI.exe.怎么了?