Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 27 → Rev 28

/SWAT DriveLogger/trunk/DriveLogger/AboutBox.cs
0,0 → 1,30
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
 
namespace DriveLogger
{
partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
this.Text = "Program Info";
this.labelProductName.Text = "SWAT DriveLogger";
this.labelVersion.Text = "Version 1.0";
this.labelCopyright.Text = "Copyright to Kevin Lee @ Virginia Tech";
this.labelCompanyName.Text = "Author: Kevin Lee";
this.textBoxDescription.Text = "This program has been written by Kevin Lee for use " +
"in Virginia Tech's SWAT (Software Assistance and " +
"Triage) office at Torgeson 2080. Distribution without " +
"notification to the author is strongly discouraged. " +
"Claiming credit for this program without being the " +
"author is prohibited. Questions and comments can be " +
"sent to klee482@vt.edu.";
}
}
}