View Single Post
  #3 (permalink)  
Old 05-24-2007, 09:57 PM
Big JR Big JR is offline
Junior Member
 
Join Date: Apr 2007
Location: Leicester, UK
Posts: 18
Default

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
Reply With Quote