Click here to Skip to main content
15,880,608 members
Articles / Programming Languages / C#

Passing Data Between Forms

Rate me:
Please Sign up or sign in to vote.
3.63/5 (110 votes)
16 May 2006CPOL4 min read 859.8K   16.1K   112  
This article is aimed at providing some simple methods for passing data between forms in Windows applications
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassData_Constructor", "PassData_Constructor\PassData_Constructor.csproj", "{D874156F-7FF2-41F5-B5CA-E69873080C8A}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassData_Object", "PassData_Object\PassData_Object.csproj", "{3EBF5657-8D1E-4CCB-AFAA-58C02323CCDA}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassData_Properties", "PassData_Properties\PassData_Properties.csproj", "{444CF0D7-0560-4EBE-B4EB-82A8975DF1D6}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PassData_Delegates", "PassData_Delegates\PassData_Delegates.csproj", "{95C1FCEA-046D-4177-9F14-C05E95B6E54D}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{D874156F-7FF2-41F5-B5CA-E69873080C8A}.Debug.ActiveCfg = Debug|.NET
		{D874156F-7FF2-41F5-B5CA-E69873080C8A}.Debug.Build.0 = Debug|.NET
		{D874156F-7FF2-41F5-B5CA-E69873080C8A}.Release.ActiveCfg = Release|.NET
		{D874156F-7FF2-41F5-B5CA-E69873080C8A}.Release.Build.0 = Release|.NET
		{3EBF5657-8D1E-4CCB-AFAA-58C02323CCDA}.Debug.ActiveCfg = Debug|.NET
		{3EBF5657-8D1E-4CCB-AFAA-58C02323CCDA}.Debug.Build.0 = Debug|.NET
		{3EBF5657-8D1E-4CCB-AFAA-58C02323CCDA}.Release.ActiveCfg = Release|.NET
		{3EBF5657-8D1E-4CCB-AFAA-58C02323CCDA}.Release.Build.0 = Release|.NET
		{444CF0D7-0560-4EBE-B4EB-82A8975DF1D6}.Debug.ActiveCfg = Debug|.NET
		{444CF0D7-0560-4EBE-B4EB-82A8975DF1D6}.Debug.Build.0 = Debug|.NET
		{444CF0D7-0560-4EBE-B4EB-82A8975DF1D6}.Release.ActiveCfg = Release|.NET
		{444CF0D7-0560-4EBE-B4EB-82A8975DF1D6}.Release.Build.0 = Release|.NET
		{95C1FCEA-046D-4177-9F14-C05E95B6E54D}.Debug.ActiveCfg = Debug|.NET
		{95C1FCEA-046D-4177-9F14-C05E95B6E54D}.Debug.Build.0 = Debug|.NET
		{95C1FCEA-046D-4177-9F14-C05E95B6E54D}.Release.ActiveCfg = Release|.NET
		{95C1FCEA-046D-4177-9F14-C05E95B6E54D}.Release.Build.0 = Release|.NET
	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
India India
Thiagu is living in Bangalore, India. He has started coding when he was 12 years old. His native is Madurai, a historic city in south India. He loves to code in C#. He frequents code project when he is not coding. Thiagu loves reading Dan Brown and Michael Crichton novels. He is very much interested in Artificial Intelligence (AI). To view his blog - http://csharpnet.blogspot.com

Comments and Discussions