I am trying to open a .chm file (Windows help file) on a specific page / topic using a system call in C ++.
I can successfully open the .chm file on the start page using the following code, but how to open the .chm file on a specific page / topic inside the help file?
system("start c:/help/myhelp.chm");
PS: I know that the system is evil / discouraged, but the system part is not really related to its command line arguments, which I pass with the .chm file (which will indicate which page I want to open), which I am trying to determine.
source share