//here the code to call a .chm file topic in VB //in the sample we called the topicID "0" //The topic ID is the PaperKiller/HyperPublish page number Declare Function HtmlHelp Lib "hhctrl.ocx" Alias "HtmlHelpA" (ByVal h As Long, ByVal s As String, ByVal i As Integer, d As Any) As Long Const HH_DISPLAY_TOPIC = &H0 Dim filepath As String filepath = "whatever.chm" HtmlHelp ByVal 0&, filepath, HH_DISPLAY_TOPIC, ByVal 0&