I’m trying to open help file using VB.NET
Help.ShowHelp(helpForm, sFile, HelpNavigator.TableOfContents, "Indice degli argomenti per la stampa")
or
Help.ShowHelp(helpForm, sFile, HelpNavigator.TableOfContents, 150)
but doesn’t works.
How can I open this content

using Help.ShowHelp method?
Thanks, Luigi.
This is explicitly mentioned in the MSDN Library article for Help.ShowHelp():
So use Topic or TopicId instead of TableOfContents.
The api isn’t otherwise sophisticate enough to let you arrange help viewer windows, if that’s what you are really after. That’s up to the user.