Creating Help in .NET

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • romcab
    New Member
    • Sep 2007
    • 108

    #1

    Creating Help in .NET

    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?
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    I dont think that you and I use the same asp.net. Looking at your code it is the difference between thongs in England & Australia ;o). You need to learn several things to use classes. Here is an article that may help:
    Creating Classes in Visual Basic .NET

    Comment

    • romcab
      New Member
      • Sep 2007
      • 108

      #3
      Sorry but I do know how to create and use classes well. I'm using C++/CLI and this is my first time to use it. My only problem right now is that I cannot call a specific help topics given an index or keyword. My trying to use overloaded constructor but it's not working. I'm thinking if it's only works well with .chm file not with .HLP.

      Thanks anyway..

      Comment

      Working...