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
deinstab.h
Package: win2ksrc.rar [view]
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 2k
Category:
Windows Develop
Development Platform:
Visual C++
- // DEInsTab.h : Declaration of the CDEInsertTableParam
- // Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved
- #ifndef __DEINSERTTABLEPARAM_H_
- #define __DEINSERTTABLEPARAM_H_
- #include "resource.h" // main symbols
- /////////////////////////////////////////////////////////////////////////////
- // CDEInsertTableParam
- class ATL_NO_VTABLE CDEInsertTableParam :
- public CComObjectRootEx<CComSingleThreadModel>,
- public CComCoClass<CDEInsertTableParam, &CLSID_DEInsertTableParam>,
- public IDispatchImpl<IDEInsertTableParam, &IID_IDEInsertTableParam, &LIBID_DHTMLEDLib>
- {
- public:
- CDEInsertTableParam();
- ~CDEInsertTableParam();
- private:
- ULONG m_nNumRows;
- ULONG m_nNumCols;
- BSTR m_bstrTableAttrs;
- BSTR m_bstrCellAttrs;
- BSTR m_bstrCaption;
- public:
- DECLARE_REGISTRY_RESOURCEID(IDR_DEINSERTTABLEPARAM)
- BEGIN_COM_MAP(CDEInsertTableParam)
- COM_INTERFACE_ENTRY(IDEInsertTableParam)
- COM_INTERFACE_ENTRY(IDispatch)
- END_COM_MAP()
- // IDEInsertTableParam
- public:
- STDMETHOD(get_Caption)(/*[out, retval]*/ BSTR *pVal);
- STDMETHOD(put_Caption)(/*[in]*/ BSTR newVal);
- STDMETHOD(get_CellAttrs)(/*[out, retval]*/ BSTR *pVal);
- STDMETHOD(put_CellAttrs)(/*[in]*/ BSTR newVal);
- STDMETHOD(get_TableAttrs)(/*[out, retval]*/ BSTR *pVal);
- STDMETHOD(put_TableAttrs)(/*[in]*/ BSTR newVal);
- STDMETHOD(get_NumCols)(/*[out, retval]*/ LONG *pVal);
- STDMETHOD(put_NumCols)(/*[in]*/ LONG newVal);
- STDMETHOD(get_NumRows)(/*[out, retval]*/ LONG *pVal);
- STDMETHOD(put_NumRows)(/*[in]*/ LONG newVal);
- };
- #endif //__DEINSERTTABLEPARAM_H_