Click here to Skip to main content
15,897,704 members
Articles / Desktop Programming / Windows Forms

C# WinForms Application Full Integration with HTMLHelp ( .chm ) - Help Topics, Context Sensitive Help, and Tooltips

Rate me:
Please Sign up or sign in to vote.
4.67/5 (12 votes)
4 May 2011CPOL5 min read 64.4K   2.2K   48  
Use HTMLHelp (.chm) to display help topics, context sensitive help and tooltips in C# Winform application
using System;
using System.IO;
using System.Windows.Forms;
using System.Reflection;

using WinHelpLib;

namespace WinHelpTest
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        /// 

        public static WinHelpEx s_help = new WinHelpEx();

        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //FileStream fs = new FileStream(@"defines.h", FileMode.Append, FileAccess.Write);
            //WinHelpEx.AttachOutput(fs);

            try
            {
                s_help.Load(
                    @"..\..\..\..\XPHelp.chm",
                    Assembly.GetExecutingAssembly().GetManifestResourceStream("WinHelpTest.XPHelpMap.h"),
                    "XPHelpPopUps.txt",
                    "XPHelpTT.txt"
                );
            }
            catch (Exception exc)
            {
                MessageBox.Show(exc.Message);
            }
            Application.Run(new MainForm());

            //WinHelpEx.ReleaseOutput();

        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions