Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
PROGRESSDEMOVIEW.CPP
Package: progress_in_status [view]
Upload User: bobuwen
Upload Date: 2013-01-31
Package Size: 44k
Code Size: 2k
Category:
StatusBar
Development Platform:
Visual C++
- // ProgressDemoView.cpp : implementation of the CProgressDemoView class
- //
- #include "stdafx.h"
- #include "ProgressDemo.h"
- #include "ProgressDemoDoc.h"
- #include "ProgressDemoView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CProgressDemoView
- IMPLEMENT_DYNCREATE(CProgressDemoView, CView)
- BEGIN_MESSAGE_MAP(CProgressDemoView, CView)
- //{{AFX_MSG_MAP(CProgressDemoView)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CProgressDemoView construction/destruction
- CProgressDemoView::CProgressDemoView()
- {
- }
- CProgressDemoView::~CProgressDemoView()
- {
- }
- BOOL CProgressDemoView::PreCreateWindow(CREATESTRUCT& cs)
- {
- return CView::PreCreateWindow(cs);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CProgressDemoView drawing
- void CProgressDemoView::OnDraw(CDC* pDC)
- {
- CProgressDemoDoc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CProgressDemoView diagnostics
- #ifdef _DEBUG
- void CProgressDemoView::AssertValid() const
- {
- CView::AssertValid();
- }
- void CProgressDemoView::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- CProgressDemoDoc* CProgressDemoView::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CProgressDemoDoc)));
- return (CProgressDemoDoc*)m_pDocument;
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CProgressDemoView message handlers