Subversion Repositories Code-Repo

Rev

Rev 64 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
64 Kevin 1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel;
4
using System.Drawing;
5
using System.Linq;
6
using System.Reflection;
7
using System.Windows.Forms;
8
 
9
namespace SWAT_Office_App
10
{
11
    partial class About_Box_Form : Form
12
    {
13
        public About_Box_Form()
14
        {
15
            InitializeComponent();
16
            this.Text = "Program Info";
17
            this.labelProductName.Text = "SWAT Office App";
18
            this.labelVersion.Text = "Version 2.6.2";
19
            this.labelCopyright.Text = "Copyright to Kevin Lee @ Virginia Tech";
20
            this.labelCompanyName.Text = "Author: Kevin Lee";
21
            this.textBoxDescription.Text = "This program has been written by Kevin Lee for use " +
22
                                           "in Virginia Tech's SWAT (Software Assistance and " +
23
                                           "Triage) office at Torgeson 2080. Distribution without " +
24
                                           "notification to the author is strongly discouraged. " +
25
                                           "Claiming credit for this program without being the " +
26
                                           "author is prohibited. Questions and comments can be " +
27
                                           "sent to klee482@vt.edu.";
28
        }
29
    }
30
}