- 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
CALCDRIV.H
Package: MSDN_VC98.zip [view]
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 2k
Category:
Windows Develop
Development Platform:
Visual C++
- // calcdriv.h : main header file for the CALCDRIV application
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1995 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
- #include "resource.h" // main symbols
- /////////////////////////////////////////////////////////////////////////////
- // CCalcDrivApp:
- // See calcdriv.cpp for the implementation of this class
- class CCalcDrivApp : public CWinApp
- {
- public:
- CCalcDrivApp();
- // Overrides
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- // Implementation
- //{{AFX_MSG(CCalcDrivApp)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- // CDriverDlg dialog
- // Include the type-safe class generated from ClassWizard's "Read Type Library"
- // button to interface with the IDispatch enabled calculator object.
- //#include "calctype.h"
- class CDriverDlg : public CDialog
- {
- // Construction
- public:
- CDriverDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CDriverDlg)
- enum { IDD = IDD_CALCDRIV };
- CStatic m_stcOperator;
- CStatic m_stcOperand;
- CStatic m_stcAccum;
- CEdit m_editExpression;
- //}}AFX_DATA
- // an instance of the IDispatch enabled calculator
- ICalcDlgPtr m_calc;
- // Implementation
- public:
- virtual ~CDriverDlg();
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CDriverDlg)
- afx_msg void OnGo();
- afx_msg void OnSingleStep();
- virtual BOOL OnInitDialog();
- afx_msg void OnRefresh();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };