Click here to Skip to main content
15,884,629 members
Articles / Desktop Programming / MFC

The Practical Guide to Multithreading - Part 2

Rate me:
Please Sign up or sign in to vote.
4.96/5 (119 votes)
12 Apr 2010CPOL43 min read 149.9K   5K   317  
More of practical situations to use multithreading!

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LargeFileReading_MFC", "LargeFileReading_MFC\LargeFileReading_MFC.vcproj", "{49ABB941-2FFE-4B24-A80A-1B7C495AD480}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LengthyCalculation_MFC", "LengthyCalculation_MFC\LengthyCalculation_MFC.vcproj", "{3A86C07E-6817-4F9C-8A51-CA83199E6CFE}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ParallelSearch_MFC", "ParallelSearch_MFC\ParallelSearch_MFC.vcproj", "{88646838-9CCA-44AF-AB05-FE78AF1278B8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SingleInstance_MFC", "SingleInstance_MFC\SingleInstance_MFC.vcproj", "{6F38E04E-63DD-45AA-861F-98D9DE3B23F1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SpellChecker_MFC", "SpellChecker_MFC\SpellChecker_MFC.vcproj", "{14BF0F1D-740A-4EAD-9204-D46900B20C30}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ProcessWait_MFC", "ProcessWait_MFC\ProcessWait.vcproj", "{6786AC0E-C482-4938-820D-1341492533FB}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{49ABB941-2FFE-4B24-A80A-1B7C495AD480}.Debug|Win32.ActiveCfg = Debug|Win32
		{49ABB941-2FFE-4B24-A80A-1B7C495AD480}.Debug|Win32.Build.0 = Debug|Win32
		{49ABB941-2FFE-4B24-A80A-1B7C495AD480}.Release|Win32.ActiveCfg = Release|Win32
		{49ABB941-2FFE-4B24-A80A-1B7C495AD480}.Release|Win32.Build.0 = Release|Win32
		{3A86C07E-6817-4F9C-8A51-CA83199E6CFE}.Debug|Win32.ActiveCfg = Debug|Win32
		{3A86C07E-6817-4F9C-8A51-CA83199E6CFE}.Debug|Win32.Build.0 = Debug|Win32
		{3A86C07E-6817-4F9C-8A51-CA83199E6CFE}.Release|Win32.ActiveCfg = Release|Win32
		{3A86C07E-6817-4F9C-8A51-CA83199E6CFE}.Release|Win32.Build.0 = Release|Win32
		{88646838-9CCA-44AF-AB05-FE78AF1278B8}.Debug|Win32.ActiveCfg = Debug|Win32
		{88646838-9CCA-44AF-AB05-FE78AF1278B8}.Debug|Win32.Build.0 = Debug|Win32
		{88646838-9CCA-44AF-AB05-FE78AF1278B8}.Release|Win32.ActiveCfg = Release|Win32
		{88646838-9CCA-44AF-AB05-FE78AF1278B8}.Release|Win32.Build.0 = Release|Win32
		{6F38E04E-63DD-45AA-861F-98D9DE3B23F1}.Debug|Win32.ActiveCfg = Debug|Win32
		{6F38E04E-63DD-45AA-861F-98D9DE3B23F1}.Debug|Win32.Build.0 = Debug|Win32
		{6F38E04E-63DD-45AA-861F-98D9DE3B23F1}.Release|Win32.ActiveCfg = Release|Win32
		{6F38E04E-63DD-45AA-861F-98D9DE3B23F1}.Release|Win32.Build.0 = Release|Win32
		{14BF0F1D-740A-4EAD-9204-D46900B20C30}.Debug|Win32.ActiveCfg = Debug|Win32
		{14BF0F1D-740A-4EAD-9204-D46900B20C30}.Debug|Win32.Build.0 = Debug|Win32
		{14BF0F1D-740A-4EAD-9204-D46900B20C30}.Release|Win32.ActiveCfg = Release|Win32
		{14BF0F1D-740A-4EAD-9204-D46900B20C30}.Release|Win32.Build.0 = Release|Win32
		{6786AC0E-C482-4938-820D-1341492533FB}.Debug|Win32.ActiveCfg = Debug|Win32
		{6786AC0E-C482-4938-820D-1341492533FB}.Debug|Win32.Build.0 = Debug|Win32
		{6786AC0E-C482-4938-820D-1341492533FB}.Release|Win32.ActiveCfg = Release|Win32
		{6786AC0E-C482-4938-820D-1341492533FB}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	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
Software Developer (Senior)
India India
Started programming with GwBasic back in 1996 (Those lovely days!). Found the hidden talent!

Touched COBOL and Quick Basic for a while.

Finally learned C and C++ entirely on my own, and fell in love with C++, still in love! Began with Turbo C 2.0/3.0, then to VC6 for 4 years! Finally on VC2008/2010.

I enjoy programming, mostly the system programming, but the UI is always on top of MFC! Quite experienced on other environments and platforms, but I prefer Visual C++. Zeal to learn, and to share!

Comments and Discussions