CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2000
    Location
    St. Paul, Minnesota
    Posts
    49

    opening help file from menu

    I have attached a html help file to my app. I used install shield to put it in the program files with my program I want to open that up if they want to view the help menu. I need to gets it path some how, right?

    How can I do this?




  2. #2
    Join Date
    Jan 2000
    Location
    MO, USA
    Posts
    1,506

    Re: opening help file from menu

    in the Sub Main of your project (or whatever your "start-up object" is) - set the App.HelpFile property to the current directory:


    Sub Form_Load()
    App.HelpFile = App.Path & "\myhelpfile.chm"
    End Sub




    or something like that.

    hope this helps,

    john


    John Pirkey
    MCSD
    http://www.ShallowWaterSystems.com
    http://www.stlvbug.org
    John Pirkey
    MCSD (VB6)
    http://www.stlvbug.org

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured