Hi guys,
I would like to ask your help about creating help in .net. I currently try Help Class and I was able to call the Help file. My problem is that, I want to pass an id and this id will be used as an index to show the correct topic. Here's my current code:
String ^myString = "C:\\Myhelp.hlp ";
Help::ShowHelp( this, myString );
I try
Help::ShowHelp( this, myString, navigator, keyword ) but it doesn't work.
What will be the problem?
I would like to ask your help about creating help in .net. I currently try Help Class and I was able to call the Help file. My problem is that, I want to pass an id and this id will be used as an index to show the correct topic. Here's my current code:
String ^myString = "C:\\Myhelp.hlp ";
Help::ShowHelp( this, myString );
I try
Help::ShowHelp( this, myString, navigator, keyword ) but it doesn't work.
What will be the problem?
Comment