Purpose:

	This archive includes a demo Visual C++ project of North Coast Idea Company's MFC-Reporter.  

Installation:

	No installation is required.  Just open the Visual C++ project file.

Status:

	This is a demo version.  Ordering information is available in the demo.

Contact:

	North Coast Idea Company, service@ncidea.com  http://www.mfc-reporter.com

Details:

	Reporter is an MFC C++ class that makes it easy for Windows appication developers
	to embed desktop published reports and forms in their application with very little
	effort or overhead.

	The secret lies in the way Reporter merges Windows Native Metafile graphic images with
	dynamic data.  It's incredibly fast and light.  We created this demo is less than 
	half an hour.  Here are the steps we followed.

	Be sure to look at imp.cpp for the "guts" of the implementation.

Here's what we did to create this demo...

	- Created new Single Document Interface project using MFC AppWizard.

	- Added ReporterDemo.Lib to Link via Project/Settings/Link "Object/library modules:"

	- Copied ReporterDemo.Lib, Reporter.h and FormDefs.h into project directory

	- Opened "Reporter DemoDoc.h"

	- Added line ... #include "reporter.h" ... line 12

	- Added CReporter to inheritance of CReporterDemoDoc class definition ... line 14

	- Copied 3 methods from CReporter.h to "Reporter Demo.h" in class def ... lines 44-50

	- Created new file "imp.cpp" to project.  These define the three methods inherited
	  from CReporter.

	- View the file imp.cpp for the guts of the implementation.

	- Opened "Reporter DemoView.h"

	- Added OnPrint method lines 37-39

	- Opened "Reporter DemoView.cpp"

	- Added lines 58-74

	- Added lines 82-84

	- Added lines 96-100

	- Copied 3 WMF's into res directory

	- Added WMF's to resource as custom type "METAFILE"



