?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 32

Line No. Rev Author Line
1 32 kaklik /*********************************************************************
2 *
3 * Log Window dialog for MPFS21
4 *
5 *********************************************************************
6 * FileName: LogWindow.cs
7 * Dependencies: Microsoft .NET Framework 2.0
8 * Processor: x86
9 * Complier: Microsoft Visual C# 2008 Express Edition
10 * Company: Microchip Technology, Inc.
11 *
12 * Software License Agreement
13 *
14 * This software is owned by Microchip Technology Inc. ("Microchip")
15 * and is supplied to you for use exclusively as described in the
16 * associated software agreement. This software is protected by
17 * software and other intellectual property laws. Any use in
18 * violation of the software license may subject the user to criminal
19 * sanctions as well as civil liability. Copyright 2008 Microchip
20 * Technology Inc. All rights reserved.
21 *
22 *
23 * THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT
24 * WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT
25 * LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A
26 * PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
27 * MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR
28 * CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF
29 * PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS
30 * BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE
31 * THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER
32 * SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT
33 * (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE.
34 *
35 *
36 * Author Date Comment
37 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
38 * Elliott Wood 4/17/2008 Original
39 ********************************************************************/
40 namespace MPFS21
41 {
42 partial class LogWindow
43 {
44 /// <summary>
45 /// Required designer variable.
46 /// </summary>
47 private System.ComponentModel.IContainer components = null;
48  
49 /// <summary>
50 /// Clean up any resources being used.
51 /// </summary>
52 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
53 protected override void Dispose(bool disposing)
54 {
55 if (disposing && (components != null))
56 {
57 components.Dispose();
58 }
59 base.Dispose(disposing);
60 }
61  
62 #region Windows Form Designer generated code
63  
64 /// <summary>
65 /// Required method for Designer support - do not modify
66 /// the contents of this method with the code editor.
67 /// </summary>
68 private void InitializeComponent()
69 {
70 this.txtLogWindow = new System.Windows.Forms.TextBox();
71 this.btnOK = new System.Windows.Forms.Button();
72 this.iconBox = new System.Windows.Forms.PictureBox();
73 this.txtMessage = new System.Windows.Forms.TextBox();
74 ((System.ComponentModel.ISupportInitialize)(this.iconBox)).BeginInit();
75 this.SuspendLayout();
76 //
77 // txtLogWindow
78 //
79 this.txtLogWindow.BackColor = System.Drawing.SystemColors.Window;
80 this.txtLogWindow.Location = new System.Drawing.Point(12, 55);
81 this.txtLogWindow.Margin = new System.Windows.Forms.Padding(3, 8, 3, 3);
82 this.txtLogWindow.Multiline = true;
83 this.txtLogWindow.Name = "txtLogWindow";
84 this.txtLogWindow.ReadOnly = true;
85 this.txtLogWindow.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
86 this.txtLogWindow.Size = new System.Drawing.Size(450, 179);
87 this.txtLogWindow.TabIndex = 0;
88 //
89 // btnOK
90 //
91 this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
92 this.btnOK.Location = new System.Drawing.Point(387, 240);
93 this.btnOK.Name = "btnOK";
94 this.btnOK.Size = new System.Drawing.Size(75, 23);
95 this.btnOK.TabIndex = 1;
96 this.btnOK.Text = "OK";
97 this.btnOK.UseVisualStyleBackColor = true;
98 //
99 // iconBox
100 //
101 this.iconBox.Location = new System.Drawing.Point(12, 12);
102 this.iconBox.Name = "iconBox";
103 this.iconBox.Size = new System.Drawing.Size(32, 32);
104 this.iconBox.TabIndex = 2;
105 this.iconBox.TabStop = false;
106 //
107 // txtMessage
108 //
109 this.txtMessage.BackColor = System.Drawing.SystemColors.Control;
110 this.txtMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
111 this.txtMessage.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
112 this.txtMessage.Location = new System.Drawing.Point(55, 12);
113 this.txtMessage.Margin = new System.Windows.Forms.Padding(8, 3, 3, 3);
114 this.txtMessage.Multiline = true;
115 this.txtMessage.Name = "txtMessage";
116 this.txtMessage.Size = new System.Drawing.Size(407, 32);
117 this.txtMessage.TabIndex = 3;
118 //
119 // LogWindow
120 //
121 this.AcceptButton = this.btnOK;
122 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
123 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
124 this.ClientSize = new System.Drawing.Size(474, 275);
125 this.Controls.Add(this.txtMessage);
126 this.Controls.Add(this.iconBox);
127 this.Controls.Add(this.btnOK);
128 this.Controls.Add(this.txtLogWindow);
129 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
130 this.MaximizeBox = false;
131 this.MinimizeBox = false;
132 this.Name = "LogWindow";
133 this.ShowIcon = false;
134 this.ShowInTaskbar = false;
135 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
136 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
137 this.Text = "MPFS Utility Log";
138 this.Load += new System.EventHandler(this.LogWindow_Load);
139 ((System.ComponentModel.ISupportInitialize)(this.iconBox)).EndInit();
140 this.ResumeLayout(false);
141 this.PerformLayout();
142  
143 }
144  
145 #endregion
146  
147 private System.Windows.Forms.TextBox txtLogWindow;
148 private System.Windows.Forms.Button btnOK;
149 private System.Windows.Forms.PictureBox iconBox;
150 private System.Windows.Forms.TextBox txtMessage;
151 }
152 }
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3