/[H8]/trunk/docs/Microchip TCP_IP stack/TCPIP Stack/Microchip Ethernet Discoverer/frmMain.Designer.cs
ViewVC logotype

Contents of /trunk/docs/Microchip TCP_IP stack/TCPIP Stack/Microchip Ethernet Discoverer/frmMain.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15 - (show annotations) (download)
Thu Apr 19 09:01:15 2007 UTC (17 years, 1 month ago) by hedin
File size: 6653 byte(s)
added the TCP/IP stack, source code.
1 /*********************************************************************
2 *
3 * Microchip Ethernet Device Discoverer
4 *
5 *********************************************************************
6 * FileName: frmMain.Designer.cs
7 * Dependencies: Microsoft .NET Framework 2.0
8 * Processor: x86
9 * Complier: Microsoft Visual C# 2005 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 2006 Microchip
20 * Technology Inc. All rights reserved.
21 *
22 * This software is provided "AS IS." MICROCHIP DISCLAIMS ALL
23 * WARRANTIES, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, NOT LIMITED
24 * TO MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
25 * INFRINGEMENT. Microchip shall in no event be liable for special,
26 * incidental, or consequential damages.
27 *
28 *
29 * Author Date Comment
30 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31 * Howard Schlunder 7/31/06 Original
32 ********************************************************************/
33 namespace Embedded_Device_Discoverer
34 {
35 partial class Form1
36 {
37 /// <summary>
38 /// Required designer variable.
39 /// </summary>
40 private System.ComponentModel.IContainer components = null;
41
42 /// <summary>
43 /// Clean up any resources being used.
44 /// </summary>
45 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
46 protected override void Dispose(bool disposing)
47 {
48 if (disposing && (components != null))
49 {
50 components.Dispose();
51 }
52 base.Dispose(disposing);
53 }
54
55 #region Windows Form Designer generated code
56
57 /// <summary>
58 /// Required method for Designer support - do not modify
59 /// the contents of this method with the code editor.
60 /// </summary>
61 private void InitializeComponent()
62 {
63 this.cmdDiscoverDevices = new System.Windows.Forms.Button();
64 this.listView1 = new System.Windows.Forms.ListView();
65 this.columnIPAddress = new System.Windows.Forms.ColumnHeader();
66 this.columnHostName = new System.Windows.Forms.ColumnHeader();
67 this.columnMACAddress = new System.Windows.Forms.ColumnHeader();
68 this.columnOther = new System.Windows.Forms.ColumnHeader();
69 this.SuspendLayout();
70 //
71 // cmdDiscoverDevices
72 //
73 this.cmdDiscoverDevices.Location = new System.Drawing.Point(12, 12);
74 this.cmdDiscoverDevices.Name = "cmdDiscoverDevices";
75 this.cmdDiscoverDevices.Size = new System.Drawing.Size(143, 23);
76 this.cmdDiscoverDevices.TabIndex = 0;
77 this.cmdDiscoverDevices.Text = "&Discover Devices";
78 this.cmdDiscoverDevices.UseVisualStyleBackColor = true;
79 this.cmdDiscoverDevices.Click += new System.EventHandler(this.cmdDiscoverDevices_Click);
80 //
81 // listView1
82 //
83 this.listView1.Activation = System.Windows.Forms.ItemActivation.TwoClick;
84 this.listView1.Alignment = System.Windows.Forms.ListViewAlignment.Default;
85 this.listView1.AllowColumnReorder = true;
86 this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
87 | System.Windows.Forms.AnchorStyles.Left)
88 | System.Windows.Forms.AnchorStyles.Right)));
89 this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
90 this.columnIPAddress,
91 this.columnHostName,
92 this.columnMACAddress,
93 this.columnOther});
94 this.listView1.FullRowSelect = true;
95 this.listView1.HideSelection = false;
96 this.listView1.Location = new System.Drawing.Point(12, 41);
97 this.listView1.MultiSelect = false;
98 this.listView1.Name = "listView1";
99 this.listView1.ShowGroups = false;
100 this.listView1.Size = new System.Drawing.Size(614, 218);
101 this.listView1.TabIndex = 4;
102 this.listView1.UseCompatibleStateImageBehavior = false;
103 this.listView1.View = System.Windows.Forms.View.Details;
104 this.listView1.ItemActivate += new System.EventHandler(this.listView1_ItemActivate);
105 //
106 // columnIPAddress
107 //
108 this.columnIPAddress.Text = "IP Address";
109 this.columnIPAddress.Width = 90;
110 //
111 // columnHostName
112 //
113 this.columnHostName.Text = "Host Name";
114 this.columnHostName.Width = 140;
115 //
116 // columnMACAddress
117 //
118 this.columnMACAddress.Text = "MAC Address";
119 this.columnMACAddress.Width = 140;
120 //
121 // columnOther
122 //
123 this.columnOther.Text = "Other Info";
124 this.columnOther.Width = 240;
125 //
126 // Form1
127 //
128 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
129 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
130 this.ClientSize = new System.Drawing.Size(638, 271);
131 this.Controls.Add(this.listView1);
132 this.Controls.Add(this.cmdDiscoverDevices);
133 this.Name = "Form1";
134 this.Text = "Microchip Ethernet Device Discoverer";
135 this.Load += new System.EventHandler(this.Form1_Load);
136 this.ResumeLayout(false);
137
138 }
139
140 #endregion
141
142 private System.Windows.Forms.Button cmdDiscoverDevices;
143 private System.Windows.Forms.ListView listView1;
144 private System.Windows.Forms.ColumnHeader columnIPAddress;
145 private System.Windows.Forms.ColumnHeader columnHostName;
146 private System.Windows.Forms.ColumnHeader columnMACAddress;
147 private System.Windows.Forms.ColumnHeader columnOther;
148 }
149 }
150

  ViewVC Help
Powered by ViewVC 1.1.20