namespace ACCES32Sample { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (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() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.CardList = new System.Windows.Forms.ComboBox(); this.label3 = new System.Windows.Forms.Label(); this.AddressText = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.WriteText = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.ReadValueLBL = new System.Windows.Forms.Label(); this.WriteByteBTN = new System.Windows.Forms.Button(); this.WriteWordBTN = new System.Windows.Forms.Button(); this.ReadByteBTN = new System.Windows.Forms.Button(); this.ReadWordBTN = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.StatusLabel = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(89, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(295, 31); this.label1.TabIndex = 0; this.label1.Text = "ACCES32 C# Sample"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 65); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(138, 13); this.label2.TabIndex = 1; this.label2.Text = "Please select a card to use:"; // // CardList // this.CardList.FormattingEnabled = true; this.CardList.Location = new System.Drawing.Point(212, 62); this.CardList.Name = "CardList"; this.CardList.Size = new System.Drawing.Size(172, 21); this.CardList.TabIndex = 2; this.CardList.SelectedIndexChanged += new System.EventHandler(this.CardList_SelectedIndexChanged); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 94); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(160, 13); this.label3.TabIndex = 3; this.label3.Text = "Please select an address to use:"; // // AddressText // this.AddressText.Location = new System.Drawing.Point(212, 94); this.AddressText.Name = "AddressText"; this.AddressText.Size = new System.Drawing.Size(100, 20); this.AddressText.TabIndex = 4; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(12, 129); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(74, 13); this.label4.TabIndex = 5; this.label4.Text = "Value to write:"; // // WriteText // this.WriteText.Location = new System.Drawing.Point(212, 129); this.WriteText.Name = "WriteText"; this.WriteText.Size = new System.Drawing.Size(100, 20); this.WriteText.TabIndex = 6; this.WriteText.Text = "00"; // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(12, 160); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(61, 13); this.label5.TabIndex = 7; this.label5.Text = "Value read:"; // // ReadValueLBL // this.ReadValueLBL.AutoSize = true; this.ReadValueLBL.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.ReadValueLBL.Location = new System.Drawing.Point(209, 160); this.ReadValueLBL.Name = "ReadValueLBL"; this.ReadValueLBL.Size = new System.Drawing.Size(20, 17); this.ReadValueLBL.TabIndex = 8; this.ReadValueLBL.Text = "--"; // // WriteByteBTN // this.WriteByteBTN.Location = new System.Drawing.Point(345, 129); this.WriteByteBTN.Name = "WriteByteBTN"; this.WriteByteBTN.Size = new System.Drawing.Size(75, 23); this.WriteByteBTN.TabIndex = 9; this.WriteByteBTN.Text = "Write Byte"; this.WriteByteBTN.UseVisualStyleBackColor = true; this.WriteByteBTN.Click += new System.EventHandler(this.WriteByteBTN_Click); // // WriteWordBTN // this.WriteWordBTN.Location = new System.Drawing.Point(447, 129); this.WriteWordBTN.Name = "WriteWordBTN"; this.WriteWordBTN.Size = new System.Drawing.Size(75, 23); this.WriteWordBTN.TabIndex = 10; this.WriteWordBTN.Text = "Write Word"; this.WriteWordBTN.UseVisualStyleBackColor = true; this.WriteWordBTN.Click += new System.EventHandler(this.WriteWordBTN_Click); // // ReadByteBTN // this.ReadByteBTN.Location = new System.Drawing.Point(345, 160); this.ReadByteBTN.Name = "ReadByteBTN"; this.ReadByteBTN.Size = new System.Drawing.Size(75, 23); this.ReadByteBTN.TabIndex = 11; this.ReadByteBTN.Text = "Read Byte"; this.ReadByteBTN.UseVisualStyleBackColor = true; this.ReadByteBTN.Click += new System.EventHandler(this.ReadByteBTN_Click); // // ReadWordBTN // this.ReadWordBTN.Location = new System.Drawing.Point(447, 160); this.ReadWordBTN.Name = "ReadWordBTN"; this.ReadWordBTN.Size = new System.Drawing.Size(75, 23); this.ReadWordBTN.TabIndex = 12; this.ReadWordBTN.Text = "Read Word"; this.ReadWordBTN.UseVisualStyleBackColor = true; this.ReadWordBTN.Click += new System.EventHandler(this.ReadWordBTN_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.StatusLabel); this.groupBox1.Location = new System.Drawing.Point(95, 232); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(289, 49); this.groupBox1.TabIndex = 13; this.groupBox1.TabStop = false; // // StatusLabel // this.StatusLabel.AutoSize = true; this.StatusLabel.Location = new System.Drawing.Point(114, 16); this.StatusLabel.Name = "StatusLabel"; this.StatusLabel.Size = new System.Drawing.Size(0, 13); this.StatusLabel.TabIndex = 0; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(558, 293); this.Controls.Add(this.groupBox1); this.Controls.Add(this.ReadWordBTN); this.Controls.Add(this.ReadByteBTN); this.Controls.Add(this.WriteWordBTN); this.Controls.Add(this.WriteByteBTN); this.Controls.Add(this.ReadValueLBL); this.Controls.Add(this.label5); this.Controls.Add(this.WriteText); this.Controls.Add(this.label4); this.Controls.Add(this.AddressText); this.Controls.Add(this.label3); this.Controls.Add(this.CardList); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "ACCES I/O Products"; this.Load += new System.EventHandler(this.Form1_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.ComboBox CardList; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox AddressText; private System.Windows.Forms.Label label4; private System.Windows.Forms.TextBox WriteText; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label ReadValueLBL; private System.Windows.Forms.Button WriteByteBTN; private System.Windows.Forms.Button WriteWordBTN; private System.Windows.Forms.Button ReadByteBTN; private System.Windows.Forms.Button ReadWordBTN; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label StatusLabel; } }