Many thanks Cableguy. That's good news. At least Natural Installer removes all complexities of .cab and .inf files.
As regards the link to help, I use...
Sub Button1_Click
If FileExist("\windows\help\nellie.lnk") = true and FileExist("\windows\nelhlp.htm") = true then
Shell("\Windows\peghelp.exe", "file:nelhlp.htm#Main_Contents", "", "", "", 0, "", "", "","")
else
msgbox("Can't find help file", "Nellie", cMsgBoxOK, cMsgBoxExclamation)
end if
End Sub
The link file contains just one line:
19#\Windows\nelhlp.htm
The 19 refers to the number of characters in "\Windows\nelhlp.htm"
The help file html is different to PC help files.
There's good guide at:
http://www.microsoft.com/technet/pro...n/cehelp3.mspx
Hope this helps
John