Skip to content

Commit

Permalink
project files updated
Browse files Browse the repository at this point in the history
  • Loading branch information
rabirajkhadka committed Jun 27, 2017
1 parent 7705533 commit 940b16d
Show file tree
Hide file tree
Showing 193 changed files with 228,451 additions and 0 deletions.
Binary file added .vs/Datalogger/v15/.suo
Binary file not shown.
41 changes: 41 additions & 0 deletions Datalogger.sln
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 added Datalogger.v11.suo
Binary file not shown.
192 changes: 192 additions & 0 deletions Datalogger/AboutUs.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

112 changes: 112 additions & 0 deletions Datalogger/AboutUs.cs
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)
{

}
}
}
Loading

0 comments on commit 940b16d

Please sign in to comment.