点击按钮-->启动 *.exe 文件
基本上,我想要做的是当我单击按钮时启动 *.exe 文件。我想在 VB.NET 中完成此操作。我有 Microsoft Visual Basic 2008 Express 版本。
我的按钮称为“btnYES”。
如何通过单击此按钮启动 *.exe 文件?
Basically, what I want to do is launch an *.exe file when I click on a button. I want this done in VB.NET. I have Microsoft Visual Basic 2008 Express Edition.
The button I have is called 'btnYES'.
How can I launch an *.exe file from the click of this button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在按钮调用的事件处理程序中,
您可以在 MSDN 文档中找到更多示例 <代码>Process.Start()。
如果您不知道如何创建事件处理程序:只需在设计器中打开表单并双击
btnYes
按钮即可。这将自动为按钮单击事件创建一个事件处理程序,并且 IDE 将在正确的位置为您打开代码文件。In the event handler of the button call
You will find further samples in the MSDN documentation for
Process.Start()
.In case you don't know how an event handler is created: Simply open the form in the designer and double-click on the
btnYes
button. This will automatically create an event handler for the button click event and the IDE will open the code file for you at the correct position.如果您想通过代码调用 exe 文件:
如果该文件是单个文件,请执行以下操作:
右键单击 exe 文件,同时按 Shift 键并选择复制为路径,即可获取路径
如果文件依赖于一个或多个.dll 文件以前的方法不起作用,请使用以下方法:
If you want to call an exe file by code:
If the file is a single file do the following:
You can obtain the path by right click the exe file while pressing shift and choosing copy as path
If the file is dependent on one or more .dll files the previous way will not work, use the following: