HOWTO: Use HTML Help API in a Visual Basic Application --------------------------------------------------------------------------------
The information in this article applies to:Microsoft Visual Basic Professional and Enterprise Editions, 32-bit only, for Windows, versions 4.0, 5.0, 6.0 
Microsoft HTML Help 1.3--------------------------------------------------------------------------------
SUMMARY
This article describes the steps necessary to use the HTML Help API in a Visual Basic application. MORE INFORMATION
The steps needed to use the HTML Help API in a Visual Basic application are: Declare the HTML Help constants. 
Declare the HtmlHelp() function. 
Call the HtmlHelp() function with valid parameters. 
The following code fragments demonstrate these steps: 
The HTML Help constants are defined as follows:       Const HH_DISPLAY_TOPIC = &H0
      Const HH_SET_WIN_TYPE = &H4
      Const HH_GET_WIN_TYPE = &H5
      Const HH_GET_WIN_HANDLE = &H6
      Const HH_DISPLAY_TEXT_POPUP = &HE   ' Display string resource ID or
                                          ' text in a pop-up window.
      Const HH_HELP_CONTEXT = &HF         ' Display mapped numeric value in
                                          ' dwData.
      Const HH_TP_HELP_CONTEXTMENU = &H10 ' Text pop-up help, similar to
                                          ' WinHelp's HELP_CONTEXTMENU.
      Const HH_TP_HELP_WM_HELP = &H11     ' text pop-up help, similar to
                                          ' WinHelp's HELP_WM_HELP. The HtmlHelp() function is declared as follows:       Declare Function HtmlHelp Lib "hhctrl.ocx" Alias "HtmlHelpA" _
         (ByVal hwndCaller As Long, ByVal pszFile As String, _
         ByVal uCommand As Long, ByVal dwData As Long) As Long The following are examples of how to call the HTML Help API from Visual Basic:       ' HTML Help file launched in response to a button click:
      Private Sub HH_DISPLAY_Click()
      'hWnd is a Long defined elsewhere to be the window handle
      'that will be the parent to the help window.
         Dim hwndHelp As Long
         'The return value is the window handle of the created help window.
         hwndHelp = HtmlHelp(hWnd, "myfile.chm", HH_DISPLAY_TOPIC, 0)
      End Sub      ' A specific topic identified by the variable ContextID is launched
      ' in response to this button click:
      Private Sub HH_HELP_Click()
         Dim hwndHelp As Long
         'The return value is the window handle of the created help window.
        hwndHelp = HtmlHelp(hWnd, "myfile.chm", HH_HELP_CONTEXT, ContextID)
      End Sub 第二个问题,
你要用App.path 设定数据库的相对路径!

解决方案 »

  1.   

    用App.path设定相对路径会在编辑运行时出现错误提示:'我的相对路径\我的相对路径\数据库名'不是一个有效路径····
    也就是他会将我的相对路径重复两遍当作数据库路径。不知怎样能不使用它自己的搜索路径。
      

  2.   

    调用chm:
    App.HelpFile = App.Path + "\help.chm"
    private sub help_click()
        frmMain.HelpContextID = 0
        SendKeys "{F1}"
    end subDim str As String
    str = App.PathIf Right(str, 1) <> "\" Then
         str = str + "\"
    End If
      

  3.   

    Public ConnSchool As New ADODB.Connection    '数据库连接变量
    dim StrdatabasePath as string
    dim app_path as string 
    If Right(app_path, 1) = "\" Then
      app_path = left(app_path ,len(app_path)-1) 
    End If
    StrDatabasePath = app_path & "\mymdb.mdb"
    ConnSchool.ConnectionString = "Provider= Microsoft.Jet.OLEDB.3.51;" _
        & "Data Source = ' " & StrDatabasePath & " '"
        
        ConnSchool.Open
      以上是源程序,没重复负值和逻辑错误啊,是不是Ado的某些设置有关?
      up!!