实例介绍
MFC Windows程序设计(第二版) 光盘代码
【实例截图】
【核心代码】
4744302543020155037.rar
└── MFC Windows 程序设计
├── Code
│ ├── Chap01
│ │ └── Hello
│ │ ├── Hello.cpp
│ │ ├── Hello.dsp
│ │ ├── Hello.dsw
│ │ ├── Hello.h
│ │ └── Release
│ │ └── Hello.exe
│ ├── Chap02
│ │ ├── Accel
│ │ │ ├── Accel.cpp
│ │ │ ├── Accel.dsp
│ │ │ ├── Accel.dsw
│ │ │ ├── Accel.h
│ │ │ └── Release
│ │ │ └── Accel.exe
│ │ └── Ruler
│ │ ├── Release
│ │ │ └── Ruler.exe
│ │ ├── Ruler.cpp
│ │ ├── Ruler.dsp
│ │ ├── Ruler.dsw
│ │ └── Ruler.h
│ ├── Chap03
│ │ ├── MouseCap
│ │ │ ├── MouseCap.cpp
│ │ │ ├── MouseCap.dsp
│ │ │ ├── MouseCap.dsw
│ │ │ ├── MouseCap.h
│ │ │ └── Release
│ │ │ └── MouseCap.exe
│ │ ├── TicTac
│ │ │ ├── Release
│ │ │ │ └── TicTac.exe
│ │ │ ├── TicTac.cpp
│ │ │ ├── TicTac.dsp
│ │ │ ├── TicTac.dsw
│ │ │ └── TicTac.h
│ │ └── VisualKB
│ │ ├── Release
│ │ │ └── VisualKB.exe
│ │ ├── VisualKB.cpp
│ │ ├── VisualKB.dsp
│ │ ├── VisualKB.dsw
│ │ └── VisualKB.h
│ ├── Chap04
│ │ ├── Colors
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── Colors.aps
│ │ │ ├── Colors.clw
│ │ │ ├── Colors.cpp
│ │ │ ├── Colors.dsp
│ │ │ ├── Colors.dsw
│ │ │ ├── Colors.h
│ │ │ ├── Colors.rc
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── Release
│ │ │ │ └── Colors.exe
│ │ │ ├── res
│ │ │ │ ├── Colors.ico
│ │ │ │ └── Colors.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── Shapes
│ │ ├── ChildView.cpp
│ │ ├── ChildView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── Release
│ │ │ └── Shapes.exe
│ │ ├── res
│ │ │ ├── Shapes.ico
│ │ │ └── Shapes.rc2
│ │ ├── resource.h
│ │ ├── Shapes.aps
│ │ ├── Shapes.clw
│ │ ├── Shapes.cpp
│ │ ├── Shapes.dsp
│ │ ├── Shapes.dsw
│ │ ├── Shapes.h
│ │ ├── Shapes.rc
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap07
│ │ ├── ColorText
│ │ │ ├── ColorText.cpp
│ │ │ ├── ColorText.dsp
│ │ │ ├── ColorText.dsw
│ │ │ ├── ColorText.h
│ │ │ └── Release
│ │ │ └── ColorText.exe
│ │ ├── FontView
│ │ │ ├── FontView.cpp
│ │ │ ├── FontView.dsp
│ │ │ ├── FontView.dsw
│ │ │ ├── FontView.h
│ │ │ └── Release
│ │ │ └── FontView.exe
│ │ ├── IconView
│ │ │ ├── IconView.cpp
│ │ │ ├── IconView.dsp
│ │ │ ├── IconView.dsw
│ │ │ ├── IconView.h
│ │ │ └── Release
│ │ │ └── IconView.exe
│ │ └── MyPad
│ │ ├── ChildView.cpp
│ │ ├── ChildView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MyPad.aps
│ │ ├── MyPad.clw
│ │ ├── MyPad.cpp
│ │ ├── MyPad.dsp
│ │ ├── MyPad.dsw
│ │ ├── MyPad.h
│ │ ├── MyPad.rc
│ │ ├── Release
│ │ │ └── MyPad.exe
│ │ ├── res
│ │ │ ├── MyPad.ico
│ │ │ └── MyPad.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap08
│ │ ├── DlgCalc
│ │ │ ├── DlgCalc.aps
│ │ │ ├── DlgCalc.clw
│ │ │ ├── DlgCalc.cpp
│ │ │ ├── DlgCalcDlg.cpp
│ │ │ ├── DlgCalcDlg.h
│ │ │ ├── DlgCalc.dsp
│ │ │ ├── DlgCalc.dsw
│ │ │ ├── DlgCalc.h
│ │ │ ├── DlgCalc.rc
│ │ │ ├── Release
│ │ │ │ └── DlgCalc.exe
│ │ │ ├── res
│ │ │ │ ├── DlgCalc.ico
│ │ │ │ └── DlgCalc.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── DlgDemo1
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── DlgDemo1.aps
│ │ │ ├── DlgDemo1.clw
│ │ │ ├── DlgDemo1.cpp
│ │ │ ├── DlgDemo1.dsp
│ │ │ ├── DlgDemo1.dsw
│ │ │ ├── DlgDemo1.h
│ │ │ ├── DlgDemo1.rc
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── OptionsDialog.cpp
│ │ │ ├── OptionsDialog.h
│ │ │ ├── Release
│ │ │ │ └── DlgDemo1.exe
│ │ │ ├── res
│ │ │ │ ├── DlgDemo1.ico
│ │ │ │ └── DlgDemo1.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── DlgDemo2
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── DlgDemo2.aps
│ │ │ ├── DlgDemo2.clw
│ │ │ ├── DlgDemo2.cpp
│ │ │ ├── DlgDemo2.dsp
│ │ │ ├── DlgDemo2.dsw
│ │ │ ├── DlgDemo2.h
│ │ │ ├── DlgDemo2.rc
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── OptionsDialog.cpp
│ │ │ ├── OptionsDialog.h
│ │ │ ├── Release
│ │ │ │ └── DlgDemo2.exe
│ │ │ ├── res
│ │ │ │ ├── DlgDemo2.ico
│ │ │ │ └── DlgDemo2.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── Phones
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── EditDialog.cpp
│ │ │ ├── EditDialog.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── PhoneEdit.cpp
│ │ │ ├── PhoneEdit.h
│ │ │ ├── Phones.aps
│ │ │ ├── Phones.clw
│ │ │ ├── Phones.cpp
│ │ │ ├── Phones.dsp
│ │ │ ├── Phones.dsw
│ │ │ ├── Phones.h
│ │ │ ├── PhonesListBox.cpp
│ │ │ ├── PhonesListBox.h
│ │ │ ├── Phones.rc
│ │ │ ├── Release
│ │ │ │ └── Phones.exe
│ │ │ ├── res
│ │ │ │ ├── Cancel.ico
│ │ │ │ ├── check.ico
│ │ │ │ ├── icon1.ico
│ │ │ │ ├── Ok.ico
│ │ │ │ ├── Phones.ico
│ │ │ │ └── Phones.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── PropDemo
│ │ ├── ChildView.cpp
│ │ ├── ChildView.h
│ │ ├── ColorPage.cpp
│ │ ├── ColorPage.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MyPropertySheet.cpp
│ │ ├── MyPropertySheet.h
│ │ ├── PropDemo.aps
│ │ ├── PropDemo.clw
│ │ ├── PropDemo.cpp
│ │ ├── PropDemo.dsp
│ │ ├── PropDemo.dsw
│ │ ├── PropDemo.h
│ │ ├── PropDemo.rc
│ │ ├── Release
│ │ │ └── PropDemo.exe
│ │ ├── res
│ │ │ ├── PropDemo.ico
│ │ │ └── PropDemo.rc2
│ │ ├── resource.h
│ │ ├── SizePage.cpp
│ │ ├── SizePage.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap09
│ │ └── SdiSquares
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── SdiSquares.exe
│ │ ├── res
│ │ │ ├── SdiSquares.ico
│ │ │ ├── SdiSquares.rc2
│ │ │ └── SquaresDoc.ico
│ │ ├── resource.h
│ │ ├── SdiSquares.aps
│ │ ├── SdiSquares.clw
│ │ ├── SdiSquares.cpp
│ │ ├── SdiSquares.dsp
│ │ ├── SdiSquares.dsw
│ │ ├── SdiSquares.h
│ │ ├── SdiSquares.rc
│ │ ├── SdiSquares.reg
│ │ ├── SquaresDoc.cpp
│ │ ├── SquaresDoc.h
│ │ ├── SquaresView.cpp
│ │ ├── SquaresView.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap10
│ │ ├── DriveTree
│ │ │ ├── DriveTree.aps
│ │ │ ├── DriveTree.clw
│ │ │ ├── DriveTree.cpp
│ │ │ ├── DriveTreeDoc.cpp
│ │ │ ├── DriveTreeDoc.h
│ │ │ ├── DriveTree.dsp
│ │ │ ├── DriveTree.dsw
│ │ │ ├── DriveTree.h
│ │ │ ├── DriveTree.rc
│ │ │ ├── DriveView.cpp
│ │ │ ├── DriveView.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── DriveTree.exe
│ │ │ ├── res
│ │ │ │ ├── Drives.bmp
│ │ │ │ ├── DriveTreeDoc.ico
│ │ │ │ ├── DriveTree.ico
│ │ │ │ └── DriveTree.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── HtmlClock
│ │ │ ├── clock.htm
│ │ │ ├── HtmlClock.aps
│ │ │ ├── HtmlClock.cpp
│ │ │ ├── HtmlClockDoc.cpp
│ │ │ ├── HtmlClockDoc.h
│ │ │ ├── HtmlClock.dsp
│ │ │ ├── HtmlClock.dsw
│ │ │ ├── HtmlClock.h
│ │ │ ├── HtmlClock.rc
│ │ │ ├── HtmlClockView.cpp
│ │ │ ├── HtmlClockView.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── HtmlClock.exe
│ │ │ ├── res
│ │ │ │ ├── HtmlClockDoc.ico
│ │ │ │ ├── HtmlClock.ico
│ │ │ │ └── HtmlClock.rc2
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── ScrollDemo
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── ScrollDemo.exe
│ │ │ ├── res
│ │ │ │ ├── ScrollDemoDoc.ico
│ │ │ │ ├── ScrollDemo.ico
│ │ │ │ └── ScrollDemo.rc2
│ │ │ ├── resource.h
│ │ │ ├── ScrollDemo.aps
│ │ │ ├── ScrollDemo.clw
│ │ │ ├── ScrollDemo.cpp
│ │ │ ├── ScrollDemoDoc.cpp
│ │ │ ├── ScrollDemoDoc.h
│ │ │ ├── ScrollDemo.dsp
│ │ │ ├── ScrollDemo.dsw
│ │ │ ├── ScrollDemo.h
│ │ │ ├── ScrollDemo.rc
│ │ │ ├── ScrollDemoView.cpp
│ │ │ ├── ScrollDemoView.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── WinDir
│ │ ├── FileView.cpp
│ │ ├── FileView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── PathDialog.cpp
│ │ ├── PathDialog.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── WinDir.exe
│ │ ├── res
│ │ │ ├── Large.bmp
│ │ │ ├── Small.bmp
│ │ │ ├── WinDirDoc.ico
│ │ │ ├── WinDir.ico
│ │ │ └── WinDir.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── WinDir.aps
│ │ ├── WinDir.clw
│ │ ├── WinDir.cpp
│ │ ├── WinDirDoc.cpp
│ │ ├── WinDirDoc.h
│ │ ├── WinDir.dsp
│ │ ├── WinDir.dsw
│ │ ├── WinDir.h
│ │ └── WinDir.rc
│ ├── Chap11
│ │ ├── MdiSquares
│ │ │ ├── ChildFrm.cpp
│ │ │ ├── ChildFrm.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── MdiSquares.aps
│ │ │ ├── MdiSquares.clw
│ │ │ ├── MdiSquares.cpp
│ │ │ ├── MdiSquares.dsp
│ │ │ ├── MdiSquares.dsw
│ │ │ ├── MdiSquares.h
│ │ │ ├── MdiSquares.rc
│ │ │ ├── MdiSquares.reg
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── MdiSquares.exe
│ │ │ ├── res
│ │ │ │ ├── MdiSquares.ico
│ │ │ │ ├── MdiSquares.rc2
│ │ │ │ └── SquaresDoc.ico
│ │ │ ├── resource.h
│ │ │ ├── SquaresDoc.cpp
│ │ │ ├── SquaresDoc.h
│ │ │ ├── SquaresView.cpp
│ │ │ ├── SquaresView.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── Sketch
│ │ │ ├── Line.cpp
│ │ │ ├── Line.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── Sketch.exe
│ │ │ ├── res
│ │ │ │ ├── SketchDoc.ico
│ │ │ │ ├── Sketch.ico
│ │ │ │ └── Sketch.rc2
│ │ │ ├── resource.h
│ │ │ ├── Sketch.aps
│ │ │ ├── Sketch.clw
│ │ │ ├── Sketch.cpp
│ │ │ ├── SketchDoc.cpp
│ │ │ ├── SketchDoc.h
│ │ │ ├── Sketch.dsp
│ │ │ ├── Sketch.dsw
│ │ │ ├── Sketch.h
│ │ │ ├── Sketch.rc
│ │ │ ├── Sketch.reg
│ │ │ ├── SketchView.cpp
│ │ │ ├── SketchView.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── Wanderer
│ │ ├── DriveView.cpp
│ │ ├── DriveView.h
│ │ ├── FileView.cpp
│ │ ├── FileView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Wanderer.exe
│ │ ├── res
│ │ │ ├── Drives.bmp
│ │ │ ├── Large.bmp
│ │ │ ├── Small.bmp
│ │ │ ├── WandererDoc.ico
│ │ │ ├── Wanderer.ico
│ │ │ └── Wanderer.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Wanderer.aps
│ │ ├── Wanderer.clw
│ │ ├── Wanderer.cpp
│ │ ├── WandererDoc.cpp
│ │ ├── WandererDoc.h
│ │ ├── Wanderer.dsp
│ │ ├── Wanderer.dsw
│ │ ├── Wanderer.h
│ │ └── Wanderer.rc
│ ├── Chap12
│ │ └── MyWord
│ │ ├── CntrItem.cpp
│ │ ├── CntrItem.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MyWord.aps
│ │ ├── MyWord.clw
│ │ ├── MyWord.cpp
│ │ ├── MyWordDoc.cpp
│ │ ├── MyWordDoc.h
│ │ ├── MyWord.dsp
│ │ ├── MyWord.dsw
│ │ ├── MyWord.h
│ │ ├── MyWord.rc
│ │ ├── MyWord.reg
│ │ ├── MyWordView.cpp
│ │ ├── MyWordView.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── MyWord.exe
│ │ ├── res
│ │ │ ├── MyWordDoc.ico
│ │ │ ├── MyWord.ico
│ │ │ ├── MyWord.rc2
│ │ │ ├── stylebar.bmp
│ │ │ └── Toolbar.bmp
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── StyleBar.cpp
│ │ └── StyleBar.h
│ ├── Chap13
│ │ ├── EZPrint
│ │ │ ├── EZPrint.aps
│ │ │ ├── EZPrint.clw
│ │ │ ├── EZPrint.cpp
│ │ │ ├── EZPrintDoc.cpp
│ │ │ ├── EZPrintDoc.h
│ │ │ ├── EZPrint.dsp
│ │ │ ├── EZPrint.dsw
│ │ │ ├── EZPrint.h
│ │ │ ├── EZPrint.rc
│ │ │ ├── EZPrintView.cpp
│ │ │ ├── EZPrintView.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── EZPrint.exe
│ │ │ ├── res
│ │ │ │ ├── EZPrintDoc.ico
│ │ │ │ ├── EZPrint.ico
│ │ │ │ └── EZPrint.rc2
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── HexDump
│ │ ├── HexDoc.cpp
│ │ ├── HexDoc.h
│ │ ├── HexDump.aps
│ │ ├── HexDump.clw
│ │ ├── HexDump.cpp
│ │ ├── HexDump.dsp
│ │ ├── HexDump.dsw
│ │ ├── HexDump.h
│ │ ├── HexDump.rc
│ │ ├── HexView.cpp
│ │ ├── HexView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── HexDump.exe
│ │ ├── res
│ │ │ ├── HexDoc.ico
│ │ │ ├── HexDump.ico
│ │ │ └── HexDump.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap14
│ │ └── Clock
│ │ ├── Clock.cpp
│ │ ├── Clock.dsp
│ │ ├── Clock.dsw
│ │ ├── Clock.h
│ │ ├── Clock.ico
│ │ ├── Clock.rc
│ │ ├── Release
│ │ │ └── Clock.exe
│ │ └── Resource.h
│ ├── Chap15
│ │ ├── BitmapDemo
│ │ │ ├── BitmapDemo.aps
│ │ │ ├── BitmapDemo.clw
│ │ │ ├── BitmapDemo.cpp
│ │ │ ├── BitmapDemo.dsp
│ │ │ ├── BitmapDemo.dsw
│ │ │ ├── BitmapDemo.h
│ │ │ ├── BitmapDemo.rc
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── MaskedBitmap.cpp
│ │ │ ├── MaskedBitmap.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── BitmapDemo.exe
│ │ │ ├── res
│ │ │ │ ├── BitmapDemo.ico
│ │ │ │ ├── BitmapDemo.rc2
│ │ │ │ └── Drive.bmp
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ ├── LivePalette
│ │ │ ├── LivePalette.cpp
│ │ │ ├── LivePalette.dsp
│ │ │ ├── LivePalette.dsw
│ │ │ ├── LivePalette.h
│ │ │ └── Release
│ │ │ └── LivePalette.exe
│ │ ├── PaletteDemo
│ │ │ ├── PaletteDemo.cpp
│ │ │ ├── PaletteDemo.dsp
│ │ │ ├── PaletteDemo.dsw
│ │ │ ├── PaletteDemo.h
│ │ │ └── Release
│ │ │ └── PaletteDemo.exe
│ │ ├── RegionDemo
│ │ │ ├── RegionDemo.cpp
│ │ │ ├── RegionDemo.dsp
│ │ │ ├── RegionDemo.dsw
│ │ │ ├── RegionDemo.h
│ │ │ └── Release
│ │ │ └── RegionDemo.exe
│ │ └── Vista
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Vista.exe
│ │ ├── res
│ │ │ ├── VistaDoc.ico
│ │ │ ├── Vista.ico
│ │ │ └── Vista.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Vista.aps
│ │ ├── Vista.clw
│ │ ├── Vista.cpp
│ │ ├── VistaDoc.cpp
│ │ ├── VistaDoc.h
│ │ ├── Vista.dsp
│ │ ├── Vista.dsw
│ │ ├── Vista.h
│ │ ├── Vista.rc
│ │ ├── VistaView.cpp
│ │ └── VistaView.h
│ ├── Chap16
│ │ ├── GridDemo
│ │ │ ├── ChildView.cpp
│ │ │ ├── ChildView.h
│ │ │ ├── GridDemo.aps
│ │ │ ├── GridDemo.clw
│ │ │ ├── GridDemo.cpp
│ │ │ ├── GridDemo.dsp
│ │ │ ├── GridDemo.dsw
│ │ │ ├── GridDemo.h
│ │ │ ├── GridDemo.rc
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── MyToolTipCtrl.cpp
│ │ │ ├── MyToolTipCtrl.h
│ │ │ ├── Release
│ │ │ │ └── GridDemo.exe
│ │ │ ├── res
│ │ │ │ ├── GridDemo.ico
│ │ │ │ └── GridDemo.rc2
│ │ │ ├── resource.h
│ │ │ ├── SettingsDialog.cpp
│ │ │ ├── SettingsDialog.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── PathList
│ │ ├── PathComboBox.cpp
│ │ ├── PathComboBox.h
│ │ ├── PathList.aps
│ │ ├── PathList.clw
│ │ ├── PathList.cpp
│ │ ├── PathListDlg.cpp
│ │ ├── PathListDlg.h
│ │ ├── PathList.dsp
│ │ ├── PathList.dsw
│ │ ├── PathList.h
│ │ ├── PathList.rc
│ │ ├── Release
│ │ │ └── PathList.exe
│ │ ├── res
│ │ │ ├── bitmap1.bmp
│ │ │ ├── PathList.ico
│ │ │ └── PathList.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap17
│ │ ├── ImageEdit
│ │ │ ├── ImageEdit.aps
│ │ │ ├── ImageEdit.clw
│ │ │ ├── ImageEdit.cpp
│ │ │ ├── ImageEditDoc.cpp
│ │ │ ├── ImageEditDoc.h
│ │ │ ├── ImageEdit.dsp
│ │ │ ├── ImageEdit.dsw
│ │ │ ├── ImageEdit.h
│ │ │ ├── ImageEdit.rc
│ │ │ ├── ImageEditView.cpp
│ │ │ ├── ImageEditView.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── Release
│ │ │ │ └── ImageEdit.exe
│ │ │ ├── res
│ │ │ │ ├── ImageEditDoc.ico
│ │ │ │ ├── ImageEdit.ico
│ │ │ │ ├── ImageEdit.rc2
│ │ │ │ └── TESTDIR.TMP
│ │ │ ├── resource.h
│ │ │ ├── SpecialStatusBar.cpp
│ │ │ ├── SpecialStatusBar.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── Sieve
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Sieve.exe
│ │ ├── res
│ │ │ ├── Sieve.ico
│ │ │ └── Sieve.rc2
│ │ ├── resource.h
│ │ ├── Sieve.aps
│ │ ├── Sieve.clw
│ │ ├── Sieve.cpp
│ │ ├── SieveDlg.cpp
│ │ ├── SieveDlg.h
│ │ ├── Sieve.dsp
│ │ ├── Sieve.dsw
│ │ ├── Sieve.h
│ │ ├── Sieve.rc
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Chap19
│ │ └── Widget
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Widget.exe
│ │ ├── res
│ │ │ ├── WidgetDoc.ico
│ │ │ ├── Widget.ico
│ │ │ └── Widget.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Widget.aps
│ │ ├── Widget.clw
│ │ ├── Widget.cpp
│ │ ├── WidgetDoc.cpp
│ │ ├── WidgetDoc.h
│ │ ├── Widget.dsp
│ │ ├── Widget.dsw
│ │ ├── Widget.h
│ │ ├── WidgetObj.cpp
│ │ ├── WidgetObj.h
│ │ ├── Widget.rc
│ │ ├── Widget.reg
│ │ ├── WidgetView.cpp
│ │ └── WidgetView.h
│ ├── Chap20
│ │ ├── AutoPie
│ │ │ ├── AutoChart.cpp
│ │ │ ├── AutoChart.h
│ │ │ ├── AutoPie.aps
│ │ │ ├── AutoPie.clw
│ │ │ ├── AutoPie.cpp
│ │ │ ├── AutoPieDoc.cpp
│ │ │ ├── AutoPieDoc.h
│ │ │ ├── AutoPie.dsp
│ │ │ ├── AutoPie.dsw
│ │ │ ├── AutoPie.h
│ │ │ ├── AutoPie.odl
│ │ │ ├── AutoPie.rc
│ │ │ ├── AutoPie.reg
│ │ │ ├── AutoPieView.cpp
│ │ │ ├── AutoPieView.h
│ │ │ ├── AutoToolbar.cpp
│ │ │ ├── AutoToolbar.h
│ │ │ ├── AutoWindow.cpp
│ │ │ ├── AutoWindow.h
│ │ │ ├── MainFrm.cpp
│ │ │ ├── MainFrm.h
│ │ │ ├── ReadMe.txt
│ │ │ ├── Release
│ │ │ │ └── AutoPie.exe
│ │ │ ├── res
│ │ │ │ ├── AutoPieDoc.ico
│ │ │ │ ├── AutoPie.ico
│ │ │ │ ├── AutoPie.rc2
│ │ │ │ └── Toolbar.bmp
│ │ │ ├── Resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ └── StdAfx.h
│ │ └── PieClient
│ │ ├── AutoPie.cpp
│ │ ├── AutoPie.h
│ │ ├── PieClient.aps
│ │ ├── PieClient.clw
│ │ ├── PieClient.cpp
│ │ ├── PieClientDlg.cpp
│ │ ├── PieClientDlg.h
│ │ ├── PieClient.dsp
│ │ ├── PieClient.dsw
│ │ ├── PieClient.h
│ │ ├── PieClient.rc
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── PieClient.exe
│ │ ├── res
│ │ │ ├── PieClient.ico
│ │ │ └── PieClient.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── Chap21
│ ├── Calendar
│ │ ├── Calendar.aps
│ │ ├── Calendar.clw
│ │ ├── Calendar.cpp
│ │ ├── CalendarCtl.bmp
│ │ ├── CalendarCtl.cpp
│ │ ├── CalendarCtl.h
│ │ ├── Calendar.def
│ │ ├── Calendar.dsp
│ │ ├── Calendar.dsw
│ │ ├── Calendar.h
│ │ ├── Calendar.ico
│ │ ├── Calendar.odl
│ │ ├── CalendarPpg.cpp
│ │ ├── CalendarPpg.h
│ │ ├── Calendar.rc
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Calendar.ocx
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── CalUser
│ ├── calendar.cpp
│ ├── calendar.h
│ ├── CalUser.aps
│ ├── CalUser.clw
│ ├── CalUser.cpp
│ ├── CalUserDlg.cpp
│ ├── CalUserDlg.h
│ ├── CalUser.dsp
│ ├── CalUser.dsw
│ ├── CalUser.h
│ ├── CalUser.rc
│ ├── ReadMe.txt
│ ├── Release
│ │ └── CalUser.exe
│ ├── res
│ │ ├── CalUser.ico
│ │ └── CalUser.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Ebook
│ ├── 1-695-0.ico
│ ├── autorun.exe
│ ├── AUTORUN.INF
│ ├── bonline.ini
│ ├── data1.cab
│ ├── DATA.TAG
│ ├── hhupd.exe
│ ├── IE4setup
│ │ ├── AMOV4IE.CAB
│ │ ├── AXA.CAB
│ │ ├── branding.cab
│ │ ├── CHL99.CAB
│ │ ├── CHLCS_CZ.CAB
│ │ ├── CHLDA_DK.CAB
│ │ ├── CHLDE_AT.CAB
│ │ ├── CHLDE_CH.CAB
│ │ ├── CHLDE_DE.CAB
│ │ ├── CHLEL_GR.CAB
│ │ ├── CHLEN_AU.CAB
│ │ ├── CHLEN_BB.CAB
│ │ ├── CHLEN_BZ.CAB
│ │ ├── CHLEN_CA.CAB
│ │ ├── CHLEN_GY.CAB
│ │ ├── CHLEN_IE.CAB
│ │ ├── CHLEN_JM.CAB
│ │ ├── CHLEN_ME.CAB
│ │ ├── CHLEN_NZ.CAB
│ │ ├── CHLEN_PH.CAB
│ │ ├── CHLEN_SR.CAB
│ │ ├── CHLEN_TT.CAB
│ │ ├── CHLEN_UK.CAB
│ │ ├── CHLEN_US.CAB
│ │ ├── CHLEN_ZA.CAB
│ │ ├── CHLES_AR.CAB
│ │ ├── CHLES_CL.CAB
│ │ ├── CHLES_CO.CAB
│ │ ├── CHLES_CR.CAB
│ │ ├── CHLES_DO.CAB
│ │ ├── CHLES_ES.CAB
│ │ ├── CHLES_GT.CAB
│ │ ├── CHLES_HN.CAB
│ │ ├── CHLES_MX.CAB
│ │ ├── CHLES_NI.CAB
│ │ ├── CHLES_PA.CAB
│ │ ├── CHLES_PE.CAB
│ │ ├── CHLES_PR.CAB
│ │ ├── CHLES_SV.CAB
│ │ ├── CHLES_UY.CAB
│ │ ├── CHLES_VE.CAB
│ │ ├── CHLFI_FI.CAB
│ │ ├── CHLFR_BE.CAB
│ │ ├── CHLFR_CH.CAB
│ │ ├── CHLFR_FR.CAB
│ │ ├── CHLHI_IN.CAB
│ │ ├── CHLHR_HR.CAB
│ │ ├── CHLHU_HU.CAB
│ │ ├── CHLIN_ID.CAB
│ │ ├── CHLIT_IT.CAB
│ │ ├── CHLJA_JP.CAB
│ │ ├── CHLKO_KR.CAB
│ │ ├── CHLML_MY.CAB
│ │ ├── CHLNL_BE.CAB
│ │ ├── CHLNL_NL.CAB
│ │ ├── CHLNO_NO.CAB
│ │ ├── CHLPL_PL.CAB
│ │ ├── CHLPT_BR.CAB
│ │ ├── CHLPT_PT.CAB
│ │ ├── CHLRU_RU.CAB
│ │ ├── CHLSL_SI.CAB
│ │ ├── CHLSV_SE.CAB
│ │ ├── CHLTH_TH.CAB
│ │ ├── CHLTR_TR.CAB
│ │ ├── CHLZH_CN.CAB
│ │ ├── CHLZH_HK.CAB
│ │ ├── CHLZH_SG.CAB
│ │ ├── CHLZH_TW.CAB
│ │ ├── DXDDEX.CAB
│ │ ├── DXMINI.CAB
│ │ ├── filelist.dat
│ │ ├── FONTCORE.CAB
│ │ ├── FONTSUP.CAB
│ │ ├── FPESETUP.CAB
│ │ ├── ie40cif.CAB
│ │ ├── IE4DATA.CAB
│ │ ├── IE4MFC40.CAB
│ │ ├── IE4NT_S1.CAB
│ │ ├── IE4NT_S2.CAB
│ │ ├── IE4NT_S3.CAB
│ │ ├── IE4NT_S4.CAB
│ │ ├── IE4NT_S5.CAB
│ │ ├── IE4_S1.CAB
│ │ ├── IE4_S2.CAB
│ │ ├── IE4_S3.CAB
│ │ ├── IE4_S4.CAB
│ │ ├── IE4_S5.CAB
│ │ ├── IE4_S6.CAB
│ │ ├── ie4setup.exe
│ │ ├── ie4setup.ini
│ │ ├── IE4SHL95.CAB
│ │ ├── IE4SHLNT.CAB
│ │ ├── iecd.ini
│ │ ├── IEJAVA.CAB
│ │ ├── INSTALL.INS
│ │ ├── IR50_32.CAB
│ │ ├── isk3ro2.exe
│ │ ├── isk3ro.exe
│ │ ├── iskrun.exe
│ │ ├── JAVI386.CAB
│ │ ├── MAILNEWS.CAB
│ │ ├── MSCHAT21.CAB
│ │ ├── MSMUS_1.CAB
│ │ ├── MSVBVM50.CAB
│ │ ├── MSWALLET.CAB
│ │ ├── NM21.CAB
│ │ ├── NSIE4.CAB
│ │ ├── R32MSIE4.EXE
│ │ ├── ReadMe1.txt
│ │ ├── SETUPNT.CAB
│ │ ├── SETUPW95.CAB
│ │ ├── VDOLIVE.CAB
│ │ └── WPIE4X86.CAB
│ ├── _INST32I.EX_
│ ├── _ISDEL.EXE
│ ├── lang.dat
│ ├── layout.bin
│ ├── license.txt
│ ├── os.dat
│ ├── progmfc2.chm
│ ├── ReadMe.txt
│ ├── REGSVR32.EXE
│ ├── setup.BMP
│ ├── _SETUP.DLL
│ ├── SETUP.EXE
│ ├── SETUP.INI
│ ├── setup.ins
│ ├── setup.lid
│ ├── _sys1.cab
│ └── _user1.cab
├── Readme.txt
├── Setup.exe
└── Short
├── Chap01
│ └── Hello
│ ├── Hello.cpp
│ ├── Hello.dsp
│ ├── Hello.dsw
│ ├── Hello.h
│ └── Release
│ └── Hello.exe
├── Chap02
│ ├── Accel
│ │ ├── Accel.cpp
│ │ ├── Accel.dsp
│ │ ├── Accel.dsw
│ │ ├── Accel.h
│ │ └── Release
│ │ └── Accel.exe
│ └── Ruler
│ ├── Release
│ │ └── Ruler.exe
│ ├── Ruler.cpp
│ ├── Ruler.dsp
│ ├── Ruler.dsw
│ └── Ruler.h
├── Chap03
│ ├── MouseCap
│ │ ├── MouseCap.cpp
│ │ ├── MouseCap.dsp
│ │ ├── MouseCap.dsw
│ │ ├── MouseCap.h
│ │ └── Release
│ │ └── MouseCap.exe
│ ├── TicTac
│ │ ├── Release
│ │ │ └── TicTac.exe
│ │ ├── TicTac.cpp
│ │ ├── TicTac.dsp
│ │ ├── TicTac.dsw
│ │ └── TicTac.h
│ └── VisualKB
│ ├── Release
│ │ └── VisualKB.exe
│ ├── VisualKB.cpp
│ ├── VisualKB.dsp
│ ├── VisualKB.dsw
│ └── VisualKB.h
├── Chap04
│ ├── Colors
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── Colors.aps
│ │ ├── Colors.clw
│ │ ├── Colors.cpp
│ │ ├── Colors.dsp
│ │ ├── Colors.dsw
│ │ ├── Colors.h
│ │ ├── Colors.rc
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── Release
│ │ │ └── Colors.exe
│ │ ├── res
│ │ │ ├── Colors.ico
│ │ │ └── Colors.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── Shapes
│ ├── CHILDV~1.CPP
│ ├── CHILDV~1.H
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── Release
│ │ └── Shapes.exe
│ ├── res
│ │ ├── Shapes.ico
│ │ └── Shapes.rc2
│ ├── resource.h
│ ├── Shapes.aps
│ ├── Shapes.clw
│ ├── Shapes.cpp
│ ├── Shapes.dsp
│ ├── Shapes.dsw
│ ├── Shapes.h
│ ├── Shapes.rc
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap07
│ ├── COLORT~1
│ │ ├── COLORT~1.CPP
│ │ ├── COLORT~1.DSP
│ │ ├── COLORT~1.DSW
│ │ ├── COLORT~1.H
│ │ └── Release
│ │ └── COLORT~1.EXE
│ ├── FontView
│ │ ├── FontView.cpp
│ │ ├── FontView.dsp
│ │ ├── FontView.dsw
│ │ ├── FontView.h
│ │ └── Release
│ │ └── FontView.exe
│ ├── IconView
│ │ ├── IconView.cpp
│ │ ├── IconView.dsp
│ │ ├── IconView.dsw
│ │ ├── IconView.h
│ │ └── Release
│ │ └── IconView.exe
│ └── MyPad
│ ├── CHILDV~1.CPP
│ ├── CHILDV~1.H
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── MyPad.aps
│ ├── MyPad.clw
│ ├── MyPad.cpp
│ ├── MyPad.dsp
│ ├── MyPad.dsw
│ ├── MyPad.h
│ ├── MyPad.rc
│ ├── Release
│ │ └── MyPad.exe
│ ├── res
│ │ ├── MyPad.ico
│ │ └── MyPad.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap08
│ ├── DlgCalc
│ │ ├── DLGCAL~1.CPP
│ │ ├── DLGCAL~1.H
│ │ ├── DlgCalc.aps
│ │ ├── DlgCalc.clw
│ │ ├── DlgCalc.cpp
│ │ ├── DlgCalc.dsp
│ │ ├── DlgCalc.dsw
│ │ ├── DlgCalc.h
│ │ ├── DlgCalc.rc
│ │ ├── Release
│ │ │ └── DlgCalc.exe
│ │ ├── res
│ │ │ ├── DlgCalc.ico
│ │ │ └── DlgCalc.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── DlgDemo1
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── DlgDemo1.aps
│ │ ├── DlgDemo1.clw
│ │ ├── DlgDemo1.cpp
│ │ ├── DlgDemo1.dsp
│ │ ├── DlgDemo1.dsw
│ │ ├── DlgDemo1.h
│ │ ├── DlgDemo1.rc
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── OPTION~1.CPP
│ │ ├── OPTION~1.H
│ │ ├── Release
│ │ │ └── DlgDemo1.exe
│ │ ├── res
│ │ │ ├── DlgDemo1.ico
│ │ │ └── DlgDemo1.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── DlgDemo2
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── DlgDemo2.aps
│ │ ├── DlgDemo2.clw
│ │ ├── DlgDemo2.cpp
│ │ ├── DlgDemo2.dsp
│ │ ├── DlgDemo2.dsw
│ │ ├── DlgDemo2.h
│ │ ├── DlgDemo2.rc
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── OPTION~1.CPP
│ │ ├── OPTION~1.H
│ │ ├── Release
│ │ │ └── DlgDemo2.exe
│ │ ├── res
│ │ │ ├── DlgDemo2.ico
│ │ │ └── DlgDemo2.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Phones
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── EDITDI~1.CPP
│ │ ├── EDITDI~1.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── PHONEE~1.CPP
│ │ ├── PHONEE~1.H
│ │ ├── PHONES~1.CPP
│ │ ├── PHONES~1.H
│ │ ├── Phones.aps
│ │ ├── Phones.clw
│ │ ├── Phones.cpp
│ │ ├── Phones.dsp
│ │ ├── Phones.dsw
│ │ ├── Phones.h
│ │ ├── Phones.rc
│ │ ├── Release
│ │ │ └── Phones.exe
│ │ ├── res
│ │ │ ├── Cancel.ico
│ │ │ ├── check.ico
│ │ │ ├── icon1.ico
│ │ │ ├── Ok.ico
│ │ │ ├── Phones.ico
│ │ │ └── Phones.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── PropDemo
│ ├── CHILDV~1.CPP
│ ├── CHILDV~1.H
│ ├── COLORP~1.CPP
│ ├── COLORP~1.H
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── MYPROP~1.CPP
│ ├── MYPROP~1.H
│ ├── PropDemo.aps
│ ├── PropDemo.clw
│ ├── PropDemo.cpp
│ ├── PropDemo.dsp
│ ├── PropDemo.dsw
│ ├── PropDemo.h
│ ├── PropDemo.rc
│ ├── Release
│ │ └── PropDemo.exe
│ ├── res
│ │ ├── PropDemo.ico
│ │ └── PropDemo.rc2
│ ├── resource.h
│ ├── SizePage.cpp
│ ├── SizePage.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap09
│ └── SDISQU~1
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── Release
│ │ └── SDISQU~1.EXE
│ ├── res
│ │ ├── SDISQU~1.ICO
│ │ ├── SDISQU~1.RC2
│ │ └── SQUARE~1.ICO
│ ├── resource.h
│ ├── SDISQU~1.APS
│ ├── SDISQU~1.CLW
│ ├── SDISQU~1.CPP
│ ├── SDISQU~1.DSP
│ ├── SDISQU~1.DSW
│ ├── SDISQU~1.H
│ ├── SDISQU~1.RC
│ ├── SDISQU~1.REG
│ ├── SQUARE~1.CPP
│ ├── SQUARE~1.H
│ ├── SQUARE~2.CPP
│ ├── SQUARE~2.H
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap10
│ ├── DRIVET~1
│ │ ├── DRIVET~1.APS
│ │ ├── DRIVET~1.CLW
│ │ ├── DRIVET~1.CPP
│ │ ├── DRIVET~1.DSP
│ │ ├── DRIVET~1.DSW
│ │ ├── DRIVET~1.H
│ │ ├── DRIVET~1.RC
│ │ ├── DRIVET~2.CPP
│ │ ├── DRIVET~2.H
│ │ ├── DRIVEV~1.CPP
│ │ ├── DRIVEV~1.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── DRIVET~1.EXE
│ │ ├── res
│ │ │ ├── Drives.bmp
│ │ │ ├── DRIVET~1.ICO
│ │ │ ├── DRIVET~1.RC2
│ │ │ └── DRIVET~2.ICO
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── HTMLCL~1
│ │ ├── clock.htm
│ │ ├── HTMLCL~1.APS
│ │ ├── HTMLCL~1.CPP
│ │ ├── HTMLCL~1.DSP
│ │ ├── HTMLCL~1.DSW
│ │ ├── HTMLCL~1.H
│ │ ├── HTMLCL~1.RC
│ │ ├── HTMLCL~2.CPP
│ │ ├── HTMLCL~2.H
│ │ ├── HTMLCL~3.CPP
│ │ ├── HTMLCL~3.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── HTMLCL~1.EXE
│ │ ├── res
│ │ │ ├── HTMLCL~1.ICO
│ │ │ ├── HTMLCL~1.RC2
│ │ │ └── HTMLCL~2.ICO
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── SCROLL~1
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── SCROLL~1.EXE
│ │ ├── res
│ │ │ ├── SCROLL~1.ICO
│ │ │ ├── SCROLL~1.RC2
│ │ │ └── SCROLL~2.ICO
│ │ ├── resource.h
│ │ ├── SCROLL~1.APS
│ │ ├── SCROLL~1.CLW
│ │ ├── SCROLL~1.CPP
│ │ ├── SCROLL~1.DSP
│ │ ├── SCROLL~1.DSW
│ │ ├── SCROLL~1.H
│ │ ├── SCROLL~1.RC
│ │ ├── SCROLL~2.CPP
│ │ ├── SCROLL~2.H
│ │ ├── SCROLL~3.CPP
│ │ ├── SCROLL~3.H
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── WinDir
│ ├── FileView.cpp
│ ├── FileView.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── PATHDI~1.CPP
│ ├── PATHDI~1.H
│ ├── ReadMe.txt
│ ├── Release
│ │ └── WinDir.exe
│ ├── res
│ │ ├── Large.bmp
│ │ ├── Small.bmp
│ │ ├── WINDIR~1.ICO
│ │ ├── WinDir.ico
│ │ └── WinDir.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── WINDIR~1.CPP
│ ├── WINDIR~1.H
│ ├── WinDir.aps
│ ├── WinDir.clw
│ ├── WinDir.cpp
│ ├── WinDir.dsp
│ ├── WinDir.dsw
│ ├── WinDir.h
│ └── WinDir.rc
├── Chap11
│ ├── MDISQU~1
│ │ ├── ChildFrm.cpp
│ │ ├── ChildFrm.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MDISQU~1.APS
│ │ ├── MDISQU~1.CLW
│ │ ├── MDISQU~1.CPP
│ │ ├── MDISQU~1.DSP
│ │ ├── MDISQU~1.DSW
│ │ ├── MDISQU~1.H
│ │ ├── MDISQU~1.RC
│ │ ├── MDISQU~1.REG
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── MDISQU~1.EXE
│ │ ├── res
│ │ │ ├── MDISQU~1.ICO
│ │ │ ├── MDISQU~1.RC2
│ │ │ └── SQUARE~1.ICO
│ │ ├── resource.h
│ │ ├── SQUARE~1.CPP
│ │ ├── SQUARE~1.H
│ │ ├── SQUARE~2.CPP
│ │ ├── SQUARE~2.H
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── Sketch
│ │ ├── Line.cpp
│ │ ├── Line.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── Sketch.exe
│ │ ├── res
│ │ │ ├── SKETCH~1.ICO
│ │ │ ├── Sketch.ico
│ │ │ └── Sketch.rc2
│ │ ├── resource.h
│ │ ├── SKETCH~1.CPP
│ │ ├── SKETCH~1.H
│ │ ├── SKETCH~2.CPP
│ │ ├── SKETCH~2.H
│ │ ├── Sketch.aps
│ │ ├── Sketch.clw
│ │ ├── Sketch.cpp
│ │ ├── Sketch.dsp
│ │ ├── Sketch.dsw
│ │ ├── Sketch.h
│ │ ├── Sketch.rc
│ │ ├── Sketch.reg
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── Wanderer
│ ├── DRIVEV~1.CPP
│ ├── DRIVEV~1.H
│ ├── FileView.cpp
│ ├── FileView.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── Release
│ │ └── Wanderer.exe
│ ├── res
│ │ ├── Drives.bmp
│ │ ├── Large.bmp
│ │ ├── Small.bmp
│ │ ├── WANDER~1.ICO
│ │ ├── Wanderer.ico
│ │ └── Wanderer.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── WANDER~1.CPP
│ ├── WANDER~1.H
│ ├── Wanderer.aps
│ ├── Wanderer.clw
│ ├── Wanderer.cpp
│ ├── Wanderer.dsp
│ ├── Wanderer.dsw
│ ├── Wanderer.h
│ └── Wanderer.rc
├── Chap12
│ └── MyWord
│ ├── CntrItem.cpp
│ ├── CntrItem.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── MYWORD~1.CPP
│ ├── MYWORD~1.H
│ ├── MYWORD~2.CPP
│ ├── MYWORD~2.H
│ ├── MyWord.aps
│ ├── MyWord.clw
│ ├── MyWord.cpp
│ ├── MyWord.dsp
│ ├── MyWord.dsw
│ ├── MyWord.h
│ ├── MyWord.rc
│ ├── MyWord.reg
│ ├── ReadMe.txt
│ ├── Release
│ │ └── MyWord.exe
│ ├── res
│ │ ├── MYWORD~1.ICO
│ │ ├── MyWord.ico
│ │ ├── MyWord.rc2
│ │ ├── stylebar.bmp
│ │ └── Toolbar.bmp
│ ├── resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── StyleBar.cpp
│ └── StyleBar.h
├── Chap13
│ ├── EZPrint
│ │ ├── EZPRIN~1.CPP
│ │ ├── EZPRIN~1.H
│ │ ├── EZPRIN~2.CPP
│ │ ├── EZPRIN~2.H
│ │ ├── EZPrint.aps
│ │ ├── EZPrint.clw
│ │ ├── EZPrint.cpp
│ │ ├── EZPrint.dsp
│ │ ├── EZPrint.dsw
│ │ ├── EZPrint.h
│ │ ├── EZPrint.rc
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── EZPrint.exe
│ │ ├── res
│ │ │ ├── EZPRIN~1.ICO
│ │ │ ├── EZPrint.ico
│ │ │ └── EZPrint.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── HexDump
│ ├── HexDoc.cpp
│ ├── HexDoc.h
│ ├── HexDump.aps
│ ├── HexDump.clw
│ ├── HexDump.cpp
│ ├── HexDump.dsp
│ ├── HexDump.dsw
│ ├── HexDump.h
│ ├── HexDump.rc
│ ├── HexView.cpp
│ ├── HexView.h
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── Release
│ │ └── HexDump.exe
│ ├── res
│ │ ├── HexDoc.ico
│ │ ├── HexDump.ico
│ │ └── HexDump.rc2
│ ├── Resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap14
│ └── Clock
│ ├── Clock.cpp
│ ├── Clock.dsp
│ ├── Clock.dsw
│ ├── Clock.h
│ ├── Clock.ico
│ ├── Clock.rc
│ ├── Release
│ │ └── Clock.exe
│ └── Resource.h
├── Chap15
│ ├── BITMAP~1
│ │ ├── BITMAP~1.APS
│ │ ├── BITMAP~1.CLW
│ │ ├── BITMAP~1.CPP
│ │ ├── BITMAP~1.DSP
│ │ ├── BITMAP~1.DSW
│ │ ├── BITMAP~1.H
│ │ ├── BITMAP~1.RC
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MASKED~1.CPP
│ │ ├── MASKED~1.H
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── BITMAP~1.EXE
│ │ ├── res
│ │ │ ├── BITMAP~1.ICO
│ │ │ ├── BITMAP~1.RC2
│ │ │ └── Drive.bmp
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── LIVEPA~1
│ │ ├── LIVEPA~1.CPP
│ │ ├── LIVEPA~1.DSP
│ │ ├── LIVEPA~1.DSW
│ │ ├── LIVEPA~1.H
│ │ └── Release
│ │ └── LIVEPA~1.EXE
│ ├── PALETT~1
│ │ ├── PALETT~1.CPP
│ │ ├── PALETT~1.DSP
│ │ ├── PALETT~1.DSW
│ │ ├── PALETT~1.H
│ │ └── Release
│ │ └── PALETT~1.EXE
│ ├── REGION~1
│ │ ├── REGION~1.CPP
│ │ ├── REGION~1.DSP
│ │ ├── REGION~1.DSW
│ │ ├── REGION~1.H
│ │ └── Release
│ │ └── REGION~1.EXE
│ └── Vista
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── Release
│ │ └── Vista.exe
│ ├── res
│ │ ├── VistaDoc.ico
│ │ ├── Vista.ico
│ │ └── Vista.rc2
│ ├── Resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── Vista.aps
│ ├── Vista.clw
│ ├── Vista.cpp
│ ├── VistaDoc.cpp
│ ├── VistaDoc.h
│ ├── Vista.dsp
│ ├── Vista.dsw
│ ├── Vista.h
│ ├── Vista.rc
│ ├── VISTAV~1.CPP
│ └── VISTAV~1.H
├── Chap16
│ ├── GridDemo
│ │ ├── CHILDV~1.CPP
│ │ ├── CHILDV~1.H
│ │ ├── GridDemo.aps
│ │ ├── GridDemo.clw
│ │ ├── GridDemo.cpp
│ │ ├── GridDemo.dsp
│ │ ├── GridDemo.dsw
│ │ ├── GridDemo.h
│ │ ├── GridDemo.rc
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── MYTOOL~1.CPP
│ │ ├── MYTOOL~1.H
│ │ ├── Release
│ │ │ └── GridDemo.exe
│ │ ├── res
│ │ │ ├── GridDemo.ico
│ │ │ └── GridDemo.rc2
│ │ ├── resource.h
│ │ ├── SETTIN~1.CPP
│ │ ├── SETTIN~1.H
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── PathList
│ ├── PATHCO~1.CPP
│ ├── PATHCO~1.H
│ ├── PATHLI~1.CPP
│ ├── PATHLI~1.H
│ ├── PathList.aps
│ ├── PathList.clw
│ ├── PathList.cpp
│ ├── PathList.dsp
│ ├── PathList.dsw
│ ├── PathList.h
│ ├── PathList.rc
│ ├── Release
│ │ └── PathList.exe
│ ├── res
│ │ ├── bitmap1.bmp
│ │ ├── PathList.ico
│ │ └── PathList.rc2
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap17
│ ├── IMAGEE~1
│ │ ├── IMAGEE~1.APS
│ │ ├── IMAGEE~1.CLW
│ │ ├── IMAGEE~1.CPP
│ │ ├── IMAGEE~1.DSP
│ │ ├── IMAGEE~1.DSW
│ │ ├── IMAGEE~1.H
│ │ ├── IMAGEE~1.RC
│ │ ├── IMAGEE~2.CPP
│ │ ├── IMAGEE~2.H
│ │ ├── IMAGEE~3.CPP
│ │ ├── IMAGEE~3.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── Release
│ │ │ └── IMAGEE~1.EXE
│ │ ├── res
│ │ │ ├── IMAGEE~1.ICO
│ │ │ ├── IMAGEE~1.RC2
│ │ │ └── IMAGEE~2.ICO
│ │ ├── resource.h
│ │ ├── SPECIA~1.CPP
│ │ ├── SPECIA~1.H
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── Sieve
│ ├── ReadMe.txt
│ ├── Release
│ │ └── Sieve.exe
│ ├── res
│ │ ├── Sieve.ico
│ │ └── Sieve.rc2
│ ├── resource.h
│ ├── Sieve.aps
│ ├── Sieve.clw
│ ├── Sieve.cpp
│ ├── SieveDlg.cpp
│ ├── SieveDlg.h
│ ├── Sieve.dsp
│ ├── Sieve.dsw
│ ├── Sieve.h
│ ├── Sieve.rc
│ ├── StdAfx.cpp
│ └── StdAfx.h
├── Chap19
│ └── Widget
│ ├── MainFrm.cpp
│ ├── MainFrm.h
│ ├── ReadMe.txt
│ ├── Release
│ │ └── Widget.exe
│ ├── res
│ │ ├── WIDGET~1.ICO
│ │ ├── Widget.ico
│ │ └── Widget.rc2
│ ├── Resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── WIDGET~1.CPP
│ ├── WIDGET~1.H
│ ├── WIDGET~2.CPP
│ ├── WIDGET~2.H
│ ├── WIDGET~3.CPP
│ ├── WIDGET~3.H
│ ├── Widget.aps
│ ├── Widget.clw
│ ├── Widget.cpp
│ ├── Widget.dsp
│ ├── Widget.dsw
│ ├── Widget.h
│ ├── Widget.rc
│ └── Widget.reg
├── Chap20
│ ├── AutoPie
│ │ ├── AUTOCH~1.CPP
│ │ ├── AUTOCH~1.H
│ │ ├── AUTOPI~1.CPP
│ │ ├── AUTOPI~1.H
│ │ ├── AUTOPI~2.CPP
│ │ ├── AUTOPI~2.H
│ │ ├── AutoPie.aps
│ │ ├── AutoPie.clw
│ │ ├── AutoPie.cpp
│ │ ├── AutoPie.dsp
│ │ ├── AutoPie.dsw
│ │ ├── AutoPie.h
│ │ ├── AutoPie.odl
│ │ ├── AutoPie.rc
│ │ ├── AutoPie.reg
│ │ ├── AUTOTO~1.CPP
│ │ ├── AUTOTO~1.H
│ │ ├── AUTOWI~1.CPP
│ │ ├── AUTOWI~1.H
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── AutoPie.exe
│ │ ├── res
│ │ │ ├── AUTOPI~1.ICO
│ │ │ ├── AutoPie.ico
│ │ │ ├── AutoPie.rc2
│ │ │ └── Toolbar.bmp
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ └── PIECLI~1
│ ├── AutoPie.cpp
│ ├── AutoPie.h
│ ├── PIECLI~1.APS
│ ├── PIECLI~1.CLW
│ ├── PIECLI~1.CPP
│ ├── PIECLI~1.DSP
│ ├── PIECLI~1.DSW
│ ├── PIECLI~1.H
│ ├── PIECLI~1.RC
│ ├── PIECLI~2.CPP
│ ├── PIECLI~2.H
│ ├── ReadMe.txt
│ ├── Release
│ │ └── PIECLI~1.EXE
│ ├── res
│ │ ├── PIECLI~1.ICO
│ │ └── PIECLI~1.RC2
│ ├── Resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
└── Chap21
├── Calendar
│ ├── CALEND~1.BMP
│ ├── CALEND~1.CPP
│ ├── CALEND~1.H
│ ├── CALEND~2.CPP
│ ├── CALEND~2.H
│ ├── Calendar.aps
│ ├── Calendar.clw
│ ├── Calendar.cpp
│ ├── Calendar.def
│ ├── Calendar.dsp
│ ├── Calendar.dsw
│ ├── Calendar.h
│ ├── Calendar.ico
│ ├── Calendar.odl
│ ├── Calendar.rc
│ ├── ReadMe.txt
│ ├── Release
│ │ └── Calendar.ocx
│ ├── resource.h
│ ├── StdAfx.cpp
│ └── StdAfx.h
└── CalUser
├── calendar.cpp
├── calendar.h
├── CALUSE~1.CPP
├── CALUSE~1.H
├── CalUser.aps
├── CalUser.clw
├── CalUser.cpp
├── CalUser.dsp
├── CalUser.dsw
├── CalUser.h
├── CalUser.rc
├── ReadMe.txt
├── Release
│ └── CalUser.exe
├── res
│ ├── CalUser.ico
│ └── CalUser.rc2
├── resource.h
├── StdAfx.cpp
└── StdAfx.h
271 directories, 1552 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论