请问那里有好的做帮助的工具,最好是中文界面!
在线等待!

解决方案 »

  1.   

    webcatcher用google搜索,遍地都是,用法:
    可以将html直接转成chm等格式,也可在其中编辑之后在生成好用
      

  2.   

    耶书制造,quickCHM等等,自己搜搜
      

  3.   

    例:
    你编译好的help.chm文件和exe在一个文件目录下
    用shell调用    
        Dim sSave As String, ret As Long    sSave = Space(255)
        ret = GetWindowsDirectory(sSave, 255)
        sSave = VBA.Left$(sSave, ret)
        ret = Shell(sSave + "\hh.exe" + " " + App.Path + "\help.chm",vbNormalFocus)
      

  4.   

    哦!忘了什么了Public Declare Function GetWindowsDirectory Lib "kernel32" Alias "GetWindowsDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long