As far as my understanding goes, when a program accesses a .hlp file, Window's help program handles the request. What I have is an older exe that wants to jump to a specific topic in a .hlp file via a menu option. Of course Windows Help spits out the generic "can't find topic" error, but what I'd really like is if it also told me what topic it was expecting to find so I can create a .hlp with the missing topics included. Is there any way to view a more detailed error log or view the request itself without the source to the exe?
Debug an embedded missing help topic from an exe
173 Views Asked by Rajada At
1
There are 1 best solutions below
Related Questions in WINDOWS
- bs-webapi - How to loop over Dom.nodeList?
- How can I use the output signature of a functor in an interface file?
- How to use npm packages with ReasonML?
- Why would it matter where a type declaration is located?
- Can I pattern match on JS objects?
- ReasonML vs TypeScript
- Limit recursion to the first three elements of list of floats
- Why are Reason Arrays Mutable?
- How to target subdirectories in BuckleScript bsconfig.json
- OOP - How does one create a class in ReasonML
Related Questions in EXECUTABLE
- bs-webapi - How to loop over Dom.nodeList?
- How can I use the output signature of a functor in an interface file?
- How to use npm packages with ReasonML?
- Why would it matter where a type declaration is located?
- Can I pattern match on JS objects?
- ReasonML vs TypeScript
- Limit recursion to the first three elements of list of floats
- Why are Reason Arrays Mutable?
- How to target subdirectories in BuckleScript bsconfig.json
- OOP - How does one create a class in ReasonML
Related Questions in HELPFILE
- bs-webapi - How to loop over Dom.nodeList?
- How can I use the output signature of a functor in an interface file?
- How to use npm packages with ReasonML?
- Why would it matter where a type declaration is located?
- Can I pattern match on JS objects?
- ReasonML vs TypeScript
- Limit recursion to the first three elements of list of floats
- Why are Reason Arrays Mutable?
- How to target subdirectories in BuckleScript bsconfig.json
- OOP - How does one create a class in ReasonML
Related Questions in WINHELP
- bs-webapi - How to loop over Dom.nodeList?
- How can I use the output signature of a functor in an interface file?
- How to use npm packages with ReasonML?
- Why would it matter where a type declaration is located?
- Can I pattern match on JS objects?
- ReasonML vs TypeScript
- Limit recursion to the first three elements of list of floats
- Why are Reason Arrays Mutable?
- How to target subdirectories in BuckleScript bsconfig.json
- OOP - How does one create a class in ReasonML
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The short story - without the source code of your *.exe (or decompiling) and without the old WinHelp project files I'd say as a first thought - no chance.
The WinHelp (.hlp) format has been around since the very early 1990s and is superseded by HTML Help 1.x (.chm). Microsoft strongly advise you move away from WinHelp about ten years ago. But for a test application it's running on my Windows10 machine like a charm (excuse the German text) with some heavy steps to fix the bygone WinHelp Viewer. Please note I don't speak of the HTMLHelp Viewer for *.chm help files shown in the background here.
Windows Help (WinHlp32.exe) is a Help program that has been included with Microsoft Windows versions starting with the Microsoft Windows 3.1 operating system. However, the Windows Help program has not had a major update for many releases and no longer meets Microsoft's standards. Therefore, starting with the release of Windows Vista and continuing in Windows 7, the Windows Help program will not ship as a feature of Windows. If you want to view 32-bit .hlp files, you must download and install the program (WinHlp32.exe) from the Microsoft Download Center.
I assume you have installed this package and have a running 32bit application with it's running WinHelp *.hlp file on your Windows7 machine. Only one topic from menu seems to be bad for you.
This may occur from a wrong TopicID called by the application or a typo in the TopicId of the connected helpfile. Perhaps the programmer has not assigned a topic. So many causes for your error.
If you have some experience in help authoring you know the compiled WinHelp file *.hlp includes a mapping helpTopicId = topic. You will need this mapping and alias file again when compiling WinHelp!
Creating a new WinHelp *.hlp file is a hard way (for me too after 15 years not using). You have to decompile and compile again with e.g. a edited topic. You may be warned - because of losing contextId's. See old stuff from my Website at: Converting WinHelp (HLP) to HTMLHelp (CHM) - a freeware tutorial
You may get lucky with a decompiler for the HelpContextId
Normally only one App.HelpFile *.hlp is linked from the application. To display a specific topic in a standard window a call from Visual Basic 6 looks like: WinHelp(hWnd, App.HelpFile, HELP_CONTEXT, ByVal CLng(TopicID)). So only a code update will give you a chance for a new TopicId. This must then match the (new) help file.