I looking for an example of how to connect a CHM (Help file) to my XLAM add-in - any example showing how to do this would be most appreciated.
I looking for an example of how to connect a CHM (Help file) to my XLAM add-in - any example showing how to do this would be most appreciated.
xl2007 - Windows 7
xl hates the 255 number
Hi Rasm,
have a look at Ken's post here Using Help in Your Applications
Cheers !
Excel Range to BBCode Table
Use Social Networking Tools If You Like the Answers !
Message to Cross Posters
@ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)
Very cool article
xl2007 - Windows 7
xl hates the 255 number
This worked great - here is the code to bring up the entire CHM file
Code:Public Sub ReadHelpFile(Language) 'http://www.excelguru.ca/content.php?166 Dim MyHelpFile As String MyHelpFile = ThisWorkbook.Path & "\NameOfFile.chm" If Dir(MyHelpFile, vbNormal) <> "NameOfFile.chm" Then Astr = MyHelpFile Call Message109(Language, Astr) Exit Sub End If Application.Help MyHelpFile End Sub
xl2007 - Windows 7
xl hates the 255 number
Bookmarks