Programming with Microsoft Visual C++.NET 6ed [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Programming with Microsoft Visual C++.NET 6ed [Electronic resources] - نسخه متنی

George Shepherd, David Kruglinski

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
توضیحات
افزودن یادداشت جدید








MFC and HTML Help


When you add help to your application, the second option is to use HTML Help. MFC applications access HTML Help in much the same way that they access WinHelp file. The application feeds context-sensitive help IDs into the help system, and the help system displays the appropriate help screen. However, HTML Help files are constructed differently than WinHelp files. HTML Help files are compiled from a number of HTML pages rather than from a single RTF file.

The following table shows the files generated by the MFC Application Wizard when you select HTML Help Format as the help system:

























File


Description


HTMLDefines.h


Includes the context IDs for the entire project.


HTML help documents


HTML files that define the help text—generally one per help topic.


projectname.hhc


HTML Help Compiler file that contains instructions to the HTML Help compiler about how to compile the help contents.


projectname.hhp


HTML Help Compiler file that defines directives for compiling a help project.


Main_index


Top-level HTM file. This is also where you add your own help topics.


Let's take a look at how to add HTML Help to an MFC application.


/ 319