04-08-2024 03:42 PM
Hello,
For experimentation, I am recreating the functionality of several IVI step types.
In all configuration dialogs, I see there is a "Help" button which, when clicked, brings up help for the associated dialog box (see below example).
How can I do the same?
04-09-2024 12:20 AM
So is your question: how do I invoke the help window on button pressed?
04-09-2024 07:41 AM
Yes, but when the help button is pressed, it needs to pull up info relevant to the active dialog box controls.
04-09-2024 07:45 AM
https://forums.ni.com/t5/LabVIEW/open-LabVIEW-Help-programatically/td-p/3963165
old thread, yet I guess it leads down the right path
04-09-2024 09:44 AM
TestStand uses the function Engine.DisplayHelpTopic to display help topics, but it takes a help tagID to identify the page to display. Unfortunately, you cannot use hh.exe to decompile the help to get the list of IDs. That mapping is in the source code for the TestStand help, so not sure how to easily determine this.
The following Stack Osverflow topic, How can I get a list of help context IDs used in a CHM help file?, suggests using FAR to get the topic IDs. I have not used that in years.