I have a 32-bit application written in Borland C ++ Builder. I need to programmatically display specific pages from an HtmlHelp file. So far, I have done this through HtmlHelp.ocx, but this does not work on 64-bit versions of Windows Vista / Windows7, as described in this thread .
I can not compile the application as a 64-bit executable. Therefore, the only workaround I have found so far is to create a 32-bit component that implements a COM object, which loads and calls into a 32-bit DLL, and provides a 32-bit DLL interface as a COM interface.
It sounds too complicated just to display a chml file with a specific theme. There must be something else. But what is it?
source
share