- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
CharView.cpp
资源名称:vcc.rar [点击查看]
上传用户:cdscwht
上传日期:2022-07-27
资源大小:264k
文件大小:1k
源码类别:
图形/文字识别
开发平台:
Visual Basic
- // CharView.cpp : implementation file
- //
- #include "stdafx.h"
- #include "dip.h"
- #include "CharView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CCharView
- IMPLEMENT_DYNCREATE(CCharView, CFormView)
- CCharView::CCharView()
- : CFormView(CCharView::IDD)
- {
- //{{AFX_DATA_INIT(CCharView)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- CCharView::~CCharView()
- {
- }
- void CCharView::DoDataExchange(CDataExchange* pDX)
- {
- CFormView::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CCharView)
- DDX_Control(pDX, IDC_EDIT_RESULT, m_result);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CCharView, CFormView)
- //{{AFX_MSG_MAP(CCharView)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CCharView diagnostics
- #ifdef _DEBUG
- void CCharView::AssertValid() const
- {
- CFormView::AssertValid();
- }
- void CCharView::Dump(CDumpContext& dc) const
- {
- CFormView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CCharView message handlers
- void CCharView::OnOK()
- {
- // TODO: Add your control notification handler code here
- }
- void CCharView::OnCancel()
- {
- // TODO: Add your control notification handler code here
- }