Click here to Skip to main content
15,894,740 members
Articles / Desktop Programming / Win32

Monitoring desktop windows from a Windows service

Rate me:
Please Sign up or sign in to vote.
4.72/5 (17 votes)
2 Jan 2008CPOL4 min read 85.3K   7.2K   115  
Capture and save desktop windows from a Windows service.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScreenmonitorService", "ScreenmonitorService\ScreenmonitorService.csproj", "{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}"
	ProjectSection(ProjectDependencies) = postProject
		{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F} = {AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScreenMonitorLib", "ScreenMonitorLib\ScreenMonitorLib.csproj", "{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SnapShotManager", "SnapShotManager\SnapShotManager.csproj", "{80DB449D-95E7-45FB-97CD-D990C7DD8E77}"
	ProjectSection(ProjectDependencies) = postProject
		{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200} = {ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}
	EndProjectSection
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "SetupMonitor", "SetupMonitor\SetupMonitor.vdproj", "{130581C1-1BCA-4D14-98F2-A2161D23A5B8}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{ED5F5A67-DD48-451D-96C7-6C6D8ECE5200}.Release|Any CPU.Build.0 = Release|Any CPU
		{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{AF3644B7-CAC2-4BDF-9DEC-9AD459D3904F}.Release|Any CPU.Build.0 = Release|Any CPU
		{80DB449D-95E7-45FB-97CD-D990C7DD8E77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{80DB449D-95E7-45FB-97CD-D990C7DD8E77}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{80DB449D-95E7-45FB-97CD-D990C7DD8E77}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{80DB449D-95E7-45FB-97CD-D990C7DD8E77}.Release|Any CPU.Build.0 = Release|Any CPU
		{130581C1-1BCA-4D14-98F2-A2161D23A5B8}.Debug|Any CPU.ActiveCfg = Debug
		{130581C1-1BCA-4D14-98F2-A2161D23A5B8}.Release|Any CPU.ActiveCfg = Release
	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)
United States United States
Decebal Mihailescu is a software engineer with interest in .Net, C# and C++.

Comments and Discussions