Click here to Skip to main content
15,895,746 members
Articles / Desktop Programming / MFC

Tangram Programming Tool Kit

Rate me:
Please Sign up or sign in to vote.
1.80/5 (2 votes)
25 Dec 20013 min read 98.8K   1.6K   17  
Tangram is a Microsoft Visual Basic for Application (VBS) integration development tool kit
//*************************************************************
// ��Ȩ������
// ---------------
// ���ļ���TangramDeveloper����ϵͳ��һ����
// ��Ȩ���� (C) 2000-2001 TangramDeveloper Team��
//
// δ����ɣ���ϵͳ��Դ���벻�����κη�ʽ�޸ġ����û򷢲�
//*************************************************************
// VbaProjectCtrl.h: interface for the CVbaProjectCtrl class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_VBAPROJECTCTRL_H__A6BC5255_FA06_4C2D_AF1E_58F9CA8B8238__INCLUDED_)
#define AFX_VBAPROJECTCTRL_H__A6BC5255_FA06_4C2D_AF1E_58F9CA8B8238__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CTangramCntrItem;
class CDocCntrItem;
class CVbaProjectCtrl 
{
public:
	virtual void DetachVbaCtrl();
	CVbaProjectCtrl();
	virtual ~CVbaProjectCtrl();

	long m_nCtrlID;
	CTangramCntrItem* m_pTangramCntrItem;
};


class CVbaProjectItem 
{
public:
	virtual void DetachVbaPrjItem();
	CVbaProjectItem();
	virtual ~CVbaProjectItem();

	CDocCntrItem* m_pDocCntrItem;
	CString m_strClsID;
};

#endif // !defined(AFX_VBAPROJECTCTRL_H__A6BC5255_FA06_4C2D_AF1E_58F9CA8B8238__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions