Click here to Skip to main content
15,886,788 members
Articles / Desktop Programming / MFC

A Tree List Control

Rate me:
Please Sign up or sign in to vote.
4.87/5 (83 votes)
19 Sep 2002 1.2M   23.7K   173  
A Tree List Control
#ifndef __TURBO_DLL__
#define __TURBO_DLL__

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#ifndef _AFXDLL
	#pragma message("*** XXXXXXXXXXXXXXXXXXXXXXXXXXXX ***")
	#pragma message("*** Must Using MFC in Shared DLL ***")
	#pragma message("*** XXXXXXXXXXXXXXXXXXXXXXXXXXXX ***")
	#error No MFC
#endif

#include <afxtempl.h>

#ifdef _DEBUG
	#pragma comment(lib,"..\\lib\\Debug\\TurboDLLD.lib") 
	#pragma message("Automatically linking with TurboDLLD.lib ( Debug Version )") 
#else
	#pragma comment(lib,"..\\lib\\Release\\TurboDLL.lib") 
	#pragma message("Automatically linking with TurboDLL.lib ( Release Version )") 
#endif

#include "TreeListColumnInfo.h"
#include "TreeListItem.h"
#include "TreeListHeaderCtrl.h"
#include "TreeListTipCtrl.h"
#include "TreeListStaticCtrl.h"
#include "TreeListEditCtrl.h"
#include "TreeListComboCtrl.h"
#include "TreeListCtrl.h"

#endif  //TURBO_DLL__

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.


Written By
Chief Technology Officer
China China
He is a Visual C++ developer, MCSE
He has been programming in C/C++ for 7 years, Visual C++ with MFC for 5 years and RDBMS: Oracle, MS SQL for 5 years

Comments and Discussions