Steps used to create "helpdemo":

using MSVC 4.1

Choose new project workspace.
Select MFC AppWizard App
Select Dialog based
Select OLE automation  (adds includes, libs, and Inits OLE at runtime. Adds some server stuff too).

Generate the App.

Invoke Class Wizard
Choose Add Class
Select "From OLE TypeLib"
Browse for NETSCAPE.TBL in netscape program dir (or in the SDK)
Select the "IOleHelp" item in the list and the wizard will build an MFC OLE dispatch class

At this point an instance object of the class IOleHelp (or whatever name you chose in the Wizard) 
can be created and used to invoke the help system.

For the simple demo, we chose to put the topics in a combobox and invoke the help via 
a button press.

All the important code is in helpdemoDlg.cpp. The core code is:

	IOleHelp HelpOb;
	HelpOb.CreateDispatch("Netscape.Help.1" );
	HelpOb.HtmlHelp( strURL, strTopic, "" );
	HelpOb.DetachDispatch();
	HelpOb.ReleaseDispatch();

------------------------------------------------------
------------------------------------------------------
Note on helpdemo.exe:

The rel_stat version is staticly linked and thus has less reliance on 
mfc dlls. The dynamically linked version requires mfc40.dll and
msvcrt40.dll. The rel_stat version does not. (NOTE: they both require the
OLE dlls.) 






