what you need to do it create a document in rich text format
(using word if you prefer)
compiling it with the microsoft help file compiler
(free from thier website)
call it with an api call
basically the code after you have created and compiled is
declarations
Private Declare Function WinHelp Lib "user32" Alias "WinHelpA" _
(ByVal hWnd As Long, ByVal lpHelpFile As String, _
ByVal wCommand As Long, ByVal dwData As Long) As Long
Private Const HELP_CONTENTS = 3
Private Const HELP_FINDER = 11
Public Sub helpfile()
Dim lResult As Long
Dim sHelpFile As String
Dim lCommand As Long, lOption As Long
sHelpFile = "[your help files name]"
lCommand = HELP_CONTENTS
lOption = 0
lResult = WinHelp(frmMain.hWnd, sHelpFile, lCommand, lOption)
End Sub