1、第一种方法:VB 中打开网页超连接在控件中加入以下代码即可Shell “C:Program FilesInternet ExplorerIEXPLORE.exe 网址“, vbNormalFocusvbNormalFocus 可以省略。 。省略后网页的打开方式为最小化打开打开一个电脑上的应用程序shell “你要打开应用程序的绝对路径“,vbNormalFocusvbNormalFocus 可以省略。 。省略后网页的打开方式为最小化打开第二种方法:shell “cmd /c start “ 这样就不能指定你的 IE 路径 如果是 98 系统 shell “command /c start “
2、打开 txt shell “cmd /c start c:api.txt“ 如果是 98 系统 shell “command /c start c:api.txt“第三种方法:Private Declare Function ShellExecute Lib “shell32.dll“ Alias “ShellExecuteA“ (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As LongShellExecute Me.hWnd, vbNullString, “, vbNullString, vbNullString, 1