When the user clicks the Help button in the Start menu, your application’s active window receives a WM_HELP message. At this point you want PegHelp.exe to launch, and for it to know the name of your HTML file. By including the anchor name of a topic, you can have that specific topic be displayed when PegHelp comes up. For example, you might issue the following command to have the "Main Contents" topic be displayed. 
CreateProcess(TEXT("PegHelp.exe"),TEXT("VOShoppingList.htm#Main_Contents"),NULL, NULL, FALSE, 0, NULL, NULL, NULL, NULL); Each dialog in your application should handle the WM_HELP message and display the appropriate topic this way.