Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3805310
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T14:39:28+00:00 2026-05-19T14:39:28+00:00

hey there, so, basically i’m trying to get my .chm file to open in

  • 0

hey there,
so, basically i’m trying to get my .chm file to open in a help window when i click on ‘view help’ from the menu bar in a c# windows form. how do i do this? does the .chm need to be in the project’s directory?
i tried using a helpProvider component and setting it’s namespace to the .chm file, but when i run the app, pressing F1 doesn’t bring it up…and i can’t seem to figure out how to get the menu bar to display it.

thanks!
dave k.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T14:39:29+00:00Added an answer on May 19, 2026 at 2:39 pm

    HelpProvider gets in the way here, use the Help class. First off, putting the .chm file in the same directory as your EXE is a very good idea. Project > Add Existing Item > select your .chm file so it is added to your project. Select it in the Solution Explorer window, in the Properties window set Build Action = Content, Copy to Output Directory = Copy if newer.

    Sample code for your form:

    using System.IO;
    ...
    
        private void showMyHelp() {
            string path = Path.GetDirectoryName(Application.ExecutablePath);
            path = "file://" + Path.Combine(path, "example.chm");
            Help.ShowHelp(this, path);
        }
        protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
            if (keyData == Keys.F1) {
                showMyHelp();
                return true;
            }
            return base.ProcessCmdKey(ref msg, keyData);
        }
        private void HelpButton_Click(object sender, EventArgs e) {
            showMyHelp();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hey there, basically trying to get the [Field ID] saved into @fieldID so i
Hey there, I am trying to get my signout button to work. This is
hey there i have this code that should save a file from sql server
Hey there. Basically, I have a batch-file, that goes through all model and texture
Hey there, I'm using the tutorial at http://www.jamesfairhurst.co.uk/posts/view/uploading_files_and_images_with_cakephp to try to get myself up
Hey, I'm trying to get my php website to basically log out (session_destroy()) when
Hey there, I'm trying to validate a form with Zend_Validate and Zend_Form. My element:
Hey there. I'm trying to write a small program that will read the four
Hey there, was wondering if anyone could help a newbie on SQL and Python.
Hey there, new to AJAX, JS.. Im trying to add to a Javascript/Ajax search

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.