邢台市清河天气:vb的,我给高分,进来啊 20分啊

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/29 15:09:21
这是个极为菜鸟极的问题

请问,怎么弄超级链接啊???
要求控件 tabal

很简单,呵呵
直接用shell调用explorer.exe

shell "explorer.exe url地址"

声明: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 Long
代码:
ShellExecute Me.hWnd, "open","网址", "", "", 5

要是弄网页超级链接(小手)那样的我不会.

shell "cmd /c start www.baidu.com"

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 Long
Call ShellExecute(hwnd, "open", "http://leaky.nease.net", "", App.Path, 1)