Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 67 → Rev 68

/SWAT Programs/SWAT Office App/trunk/SWAT Office App/About_Box.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 SWAT_Office_App
{
partial class About_Box_Form : Form
{
public About_Box_Form()
{
InitializeComponent();
this.Text = "Program Info";
this.labelProductName.Text = "SWAT Office App";
this.labelVersion.Text = "Version 2.6.2";
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.";
}
}
}