-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7705533
commit 940b16d
Showing
193 changed files
with
228,451 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Datalogger", "Datalogger\Datalogger.csproj", "{046139EE-ACFB-46AB-BF66-5D483E543280}" | ||
EndProject | ||
Project("{6141683F-8A12-4E36-9623-2EB02B2C2303}") = "Setup", "Setup\Setup.isproj", "{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
CD_ROM|Any CPU = CD_ROM|Any CPU | ||
Debug|Any CPU = Debug|Any CPU | ||
DVD-5|Any CPU = DVD-5|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
SingleImage|Any CPU = SingleImage|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.CD_ROM|Any CPU.ActiveCfg = Release|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.CD_ROM|Any CPU.Build.0 = Release|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.DVD-5|Any CPU.Build.0 = Debug|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.SingleImage|Any CPU.ActiveCfg = Release|Any CPU | ||
{046139EE-ACFB-46AB-BF66-5D483E543280}.SingleImage|Any CPU.Build.0 = Release|Any CPU | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.CD_ROM|Any CPU.ActiveCfg = CD_ROM | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.CD_ROM|Any CPU.Build.0 = CD_ROM | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.Debug|Any CPU.ActiveCfg = DVD-5 | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.Debug|Any CPU.Build.0 = DVD-5 | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.DVD-5|Any CPU.ActiveCfg = DVD-5 | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.DVD-5|Any CPU.Build.0 = DVD-5 | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.Release|Any CPU.ActiveCfg = SingleImage | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.Release|Any CPU.Build.0 = SingleImage | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.SingleImage|Any CPU.ActiveCfg = SingleImage | ||
{2F417E49-0DB7-43A2-9A1B-68B86F24DC73}.SingleImage|Any CPU.Build.0 = SingleImage | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Reflection; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace Datalogger | ||
{ | ||
partial class AboutUs : Form | ||
{ | ||
public AboutUs() | ||
{ | ||
InitializeComponent(); | ||
/* | ||
this.Text = String.Format("About {0}", AssemblyTitle); | ||
this.product_name.Text = AssemblyProduct; | ||
this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion); | ||
this.labelCopyright.Text = AssemblyCopyright; | ||
this.labelCompanyName.Text = AssemblyCompany; | ||
this.textBoxDescription.Text = AssemblyDescription; | ||
*/ | ||
} | ||
|
||
#region Assembly Attribute Accessors | ||
|
||
public string AssemblyTitle | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); | ||
if (attributes.Length > 0) | ||
{ | ||
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; | ||
if (titleAttribute.Title != "") | ||
{ | ||
return titleAttribute.Title; | ||
} | ||
} | ||
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); | ||
} | ||
} | ||
|
||
public string AssemblyVersion | ||
{ | ||
get | ||
{ | ||
return Assembly.GetExecutingAssembly().GetName().Version.ToString(); | ||
} | ||
} | ||
|
||
public string AssemblyDescription | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyDescriptionAttribute)attributes[0]).Description; | ||
} | ||
} | ||
|
||
public string AssemblyProduct | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyProductAttribute)attributes[0]).Product; | ||
} | ||
} | ||
|
||
public string AssemblyCopyright | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; | ||
} | ||
} | ||
|
||
public string AssemblyCompany | ||
{ | ||
get | ||
{ | ||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); | ||
if (attributes.Length == 0) | ||
{ | ||
return ""; | ||
} | ||
return ((AssemblyCompanyAttribute)attributes[0]).Company; | ||
} | ||
} | ||
#endregion | ||
|
||
private void textBoxDescription_TextChanged(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.