本文介绍了创建.net应用程序以进行后台工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
推荐答案
Dim procID As Integer
' Run I.E.
procID = Shell("the path of your exe file", AppWinStyle.NormalFocus)
您可以在exe文件的字符串后添加一个空白的URL,例如:
.. \ iexplorer.exe www.facebook.com
AppWinStyle是包含此类样式的枚举类型
you can add the url after the string of you exe file with a blank for example:
..\iexplorer.exe www.facebook.com
the AppWinStyle is a enum type include such styles
AppWinStyle.Hide
AppWinStyle.NormalFocus
AppWinStyle.MinimizedFocus
AppWinStyle.MaximizedFocus
AppWinStyle.NormalNoFocus
AppWinStyle.MinimizedNoFocus
返回值是存在的exe文件的进程ID.
the return value is the process ID of exist exe file.
这篇关于创建.net应用程序以进行后台工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!