using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace OCAReports { /// /// Summary description for Form2. /// public class frmAbout : System.Windows.Forms.Form { private System.Windows.Forms.Button cmdOK; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public frmAbout() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmAbout)); this.cmdOK = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // cmdOK // this.cmdOK.Location = new System.Drawing.Point(168, 192); this.cmdOK.Name = "cmdOK"; this.cmdOK.TabIndex = 0; this.cmdOK.Text = "&OK"; this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); // // label1 // this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.label1.Location = new System.Drawing.Point(24, 16); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(368, 23); this.label1.TabIndex = 1; this.label1.Text = "On Line Crash Analysis"; this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // label2 // this.label2.Location = new System.Drawing.Point(24, 56); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(368, 16); this.label2.TabIndex = 2; this.label2.Text = "Created By Tim Ragain V1.0"; this.label2.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // label3 // this.label3.Location = new System.Drawing.Point(24, 88); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(368, 16); this.label3.TabIndex = 3; this.label3.Text = "Developed with C# and VC++ Visual Studio 7.0"; this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // Form2 // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(416, 294); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.label3, this.label2, this.label1, this.cmdOK}); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "Form2"; this.Text = "About"; this.ResumeLayout(false); } #endregion private void cmdOK_Click(object sender, System.EventArgs e) { this.Close(); } } }