Click here to Skip to main content
15,892,161 members
Articles / Programming Languages / Visual Basic

Calculator Sample in WCF ’ VB

Rate me:
Please Sign up or sign in to vote.
4.08/5 (4 votes)
9 Sep 2014CPOL2 min read 25.5K   4   5  
This is a simple calculator that contains four basic mathematical functions for common calculation.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "MyCalculator", "MyCalculator\MyCalculator.vbproj", "{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WindowsApplication1", "WindowsApplication1\WindowsApplication1.vbproj", "{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}"
	ProjectSection(ProjectDependencies) = postProject
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10} = {1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Debug|x86.ActiveCfg = Debug|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Release|Any CPU.Build.0 = Release|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{1FC09C68-6CE8-48F5-AD7E-943F8DD04B10}.Release|x86.ActiveCfg = Release|Any CPU
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Debug|Any CPU.ActiveCfg = Debug|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Debug|x86.ActiveCfg = Debug|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Debug|x86.Build.0 = Debug|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Release|Any CPU.ActiveCfg = Release|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Release|Mixed Platforms.Build.0 = Release|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Release|x86.ActiveCfg = Release|x86
		{EE6FB0F8-363B-4224-AE70-FF69ADF7522A}.Release|x86.Build.0 = Release|x86
	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
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions