Click here to Skip to main content
15,886,799 members
Articles / Desktop Programming / WTL

A fast and lightweight cell control

Rate me:
Please Sign up or sign in to vote.
4.42/5 (31 votes)
11 Mar 2008CPOL1 min read 90.9K   4.5K   81  
A fast and lightweight cell control for displaying tabular data. The cell is a custom control derived from ATL::CWindow.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mycell", "mycell.vcproj", "{96ADEEEA-647E-41A3-8EC4-D7AE69BBEC8D}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmycell", "..\libmycell\libmycell.vcproj", "{29413498-517E-429B-BE0F-F00FEAFFE30B}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ComWrap", "..\ComWrap\ComWrap.vcproj", "{482B91BA-28A2-49DF-9D61-ABAE4F330564}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MfcTest", "..\MfcTest\MfcTest.vcproj", "{6BBC00DD-C912-4772-AB9A-312092A65F93}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SourceCodeControl) = preSolution
		SccNumberOfProjects = 2
		SccProjectUniqueName0 = mycell.vcproj
		SccProjectName0 = \u0022$/mycell\u0022,\u0020BAAAAAAA
		SccLocalPath0 = ..
		SccProvider0 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe
		CanCheckoutShared = false
		SccProjectFilePathRelativizedFromConnection0 = test\\
		SccProjectUniqueName1 = ..\\libmycell\\libmycell.vcproj
		SccProjectName1 = \u0022$/mycell\u0022,\u0020BAAAAAAA
		SccLocalPath1 = ..
		SccProvider1 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe
		CanCheckoutShared = false
		SccProjectFilePathRelativizedFromConnection1 = libmycell\\
	EndGlobalSection
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{96ADEEEA-647E-41A3-8EC4-D7AE69BBEC8D}.Debug.ActiveCfg = Debug|Win32
		{96ADEEEA-647E-41A3-8EC4-D7AE69BBEC8D}.Debug.Build.0 = Debug|Win32
		{96ADEEEA-647E-41A3-8EC4-D7AE69BBEC8D}.Release.ActiveCfg = Release|Win32
		{96ADEEEA-647E-41A3-8EC4-D7AE69BBEC8D}.Release.Build.0 = Release|Win32
		{29413498-517E-429B-BE0F-F00FEAFFE30B}.Debug.ActiveCfg = Debug|Win32
		{29413498-517E-429B-BE0F-F00FEAFFE30B}.Debug.Build.0 = Debug|Win32
		{29413498-517E-429B-BE0F-F00FEAFFE30B}.Release.ActiveCfg = Release|Win32
		{29413498-517E-429B-BE0F-F00FEAFFE30B}.Release.Build.0 = Release|Win32
		{482B91BA-28A2-49DF-9D61-ABAE4F330564}.Debug.ActiveCfg = Debug|Win32
		{482B91BA-28A2-49DF-9D61-ABAE4F330564}.Debug.Build.0 = Debug|Win32
		{482B91BA-28A2-49DF-9D61-ABAE4F330564}.Release.ActiveCfg = Release|Win32
		{482B91BA-28A2-49DF-9D61-ABAE4F330564}.Release.Build.0 = Release|Win32
		{6BBC00DD-C912-4772-AB9A-312092A65F93}.Debug.ActiveCfg = Debug|Win32
		{6BBC00DD-C912-4772-AB9A-312092A65F93}.Debug.Build.0 = Debug|Win32
		{6BBC00DD-C912-4772-AB9A-312092A65F93}.Release.ActiveCfg = Release|Win32
		{6BBC00DD-C912-4772-AB9A-312092A65F93}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
China China
My name is Yanxueming,i live in Chengdu China.Graduated from UESTC in 1999.

Comments and Discussions