1================================================================================
2    MICROSOFT FOUNDATION CLASS LIBRARY : studiox Project Overview
3===============================================================================
4
5The application wizard has created this studiox application for
6you.  This application not only demonstrates the basics of using the Microsoft
7Foundation Classes but is also a starting point for writing your application.
8
9This file contains a summary of what you will find in each of the files that
10make up your studiox application.
11
12studiox.vcproj
13    This is the main project file for VC++ projects generated using an application wizard.
14    It contains information about the version of Visual C++ that generated the file, and
15    information about the platforms, configurations, and project features selected with the
16    application wizard.
17
18studiox.h
19    This is the main header file for the application.  It includes other
20    project specific headers (including Resource.h) and declares the
21    CstudioxApp application class.
22
23studiox.cpp
24    This is the main application source file that contains the application
25    class CstudioxApp.
26
27studiox.rc
28    This is a listing of all of the Microsoft Windows resources that the
29    program uses.  It includes the icons, bitmaps, and cursors that are stored
30    in the RES subdirectory.  This file can be directly edited in Microsoft
31    Visual C++. Your project resources are in 1033.
32
33res\studiox.ico
34    This is an icon file, which is used as the application's icon.  This
35    icon is included by the main resource file studiox.rc.
36
37res\studiox.rc2
38    This file contains resources that are not edited by Microsoft
39    Visual C++. You should place all resources not editable by
40    the resource editor in this file.
41
42/////////////////////////////////////////////////////////////////////////////
43
44For the main frame window:
45    The project includes a standard MFC interface.
46
47MainFrm.h, MainFrm.cpp
48    These files contain the frame class CMainFrame, which is derived from
49    CFrameWnd and controls all SDI frame features.
50
51res\Toolbar.bmp
52    This bitmap file is used to create tiled images for the toolbar.
53    The initial toolbar and status bar are constructed in the CMainFrame
54    class. Edit this toolbar bitmap using the resource editor, and
55    update the IDR_MAINFRAME TOOLBAR array in studiox.rc to add
56    toolbar buttons.
57/////////////////////////////////////////////////////////////////////////////
58
59The application wizard creates one document type and one view:
60
61studioxDoc.h, studioxDoc.cpp - the document
62    These files contain your CstudioxDoc class.  Edit these files to
63    add your special document data and to implement file saving and loading
64    (via CstudioxDoc::Serialize).
65
66studioxView.h, studioxView.cpp - the view of the document
67    These files contain your CstudioxView class.
68    CstudioxView objects are used to view CstudioxDoc objects.
69
70
71
72
73
74/////////////////////////////////////////////////////////////////////////////
75
76Other Features:
77
78ActiveX Controls
79    The application includes support to use ActiveX controls.
80
81Printing and Print Preview support
82    The application wizard has generated code to handle the print, print setup, and print preview
83    commands by calling member functions in the CView class from the MFC library.
84
85/////////////////////////////////////////////////////////////////////////////
86
87Other standard files:
88
89StdAfx.h, StdAfx.cpp
90    These files are used to build a precompiled header (PCH) file
91    named studiox.pch and a precompiled types file named StdAfx.obj.
92
93Resource.h
94    This is the standard header file, which defines new resource IDs.
95    Microsoft Visual C++ reads and updates this file.
96
97studiox.manifest
98	Application manifest files are used by Windows XP to describe an applications
99	dependency on specific versions of Side-by-Side assemblies. The loader uses this
100	information to load the appropriate assembly from the assembly cache or private
101	from the application. The Application manifest  maybe included for redistribution
102	as an external .manifest file that is installed in the same folder as the application
103	executable or it may be included in the executable in the form of a resource.
104/////////////////////////////////////////////////////////////////////////////
105
106Other notes:
107
108The application wizard uses "TODO:" to indicate parts of the source code you
109should add to or customize.
110
111If your application uses MFC in a shared DLL, you will need
112to redistribute the MFC DLLs. If your application is in a language
113other than the operating system's locale, you will also have to
114redistribute the corresponding localized resources MFC80XXX.DLL.
115For more information on both of these topics, please see the section on
116redistributing Visual C++ applications in MSDN documentation.
117
118/////////////////////////////////////////////////////////////////////////////
119