Rev 64 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
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.";}}}