我想用VB打开一个网页 并传递一个参数 
请问各位高手 谁知道怎么做啊 
教教我 不胜感激 ……

解决方案 »

  1.   


    Public 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    Dim a As Long, b As String
        b = App.Path & "\help\index.htm" '用变量b记录与主程序同目录下的help.chm帮助文件
        a = ShellExecute(0, "open", b, "", "", SW_SHOWNORMAL)你的问题是这个意思吗?
      

  2.   

    b = App.Path & "\help\index.htm?para=" & para