namespace Sample1 { 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.lblVolt0 = new System.Windows.Forms.Label(); this.lblVolt1 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.btnDevice = new System.Windows.Forms.Button(); this.btnExecute = new System.Windows.Forms.Button(); this.progressBar1 = new System.Windows.Forms.ProgressBar(); this.progressBar2 = new System.Windows.Forms.ProgressBar(); this.btnStop = new System.Windows.Forms.Button(); this.progressBar4 = new System.Windows.Forms.ProgressBar(); this.progressBar3 = new System.Windows.Forms.ProgressBar(); this.lblCount1 = new System.Windows.Forms.Label(); this.lblCount0 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // lblVolt0 // this.lblVolt0.AutoSize = true; this.lblVolt0.Location = new System.Drawing.Point(185, 53); this.lblVolt0.Name = "lblVolt0"; this.lblVolt0.Size = new System.Drawing.Size(58, 13); this.lblVolt0.TabIndex = 135; this.lblVolt0.Tag = "0"; this.lblVolt0.Text = "Ch 0: Volts"; // // lblVolt1 // this.lblVolt1.AutoSize = true; this.lblVolt1.Location = new System.Drawing.Point(184, 81); this.lblVolt1.Name = "lblVolt1"; this.lblVolt1.Size = new System.Drawing.Size(58, 13); this.lblVolt1.TabIndex = 136; this.lblVolt1.Tag = "1"; this.lblVolt1.Text = "Ch 1: Volts"; // // label16 // this.label16.AutoSize = true; this.label16.Location = new System.Drawing.Point(221, 21); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(123, 13); this.label16.TabIndex = 148; this.label16.Text = "2 Channel Analog Inputs"; // // btnDevice // this.btnDevice.Location = new System.Drawing.Point(35, 138); this.btnDevice.Name = "btnDevice"; this.btnDevice.Size = new System.Drawing.Size(112, 23); this.btnDevice.TabIndex = 172; this.btnDevice.Text = "Device select"; this.btnDevice.UseVisualStyleBackColor = true; this.btnDevice.Click += new System.EventHandler(this.btnDevice_Click_1); // // btnExecute // this.btnExecute.Location = new System.Drawing.Point(35, 46); this.btnExecute.Name = "btnExecute"; this.btnExecute.Size = new System.Drawing.Size(112, 23); this.btnExecute.TabIndex = 185; this.btnExecute.Text = "Execute"; this.btnExecute.UseVisualStyleBackColor = true; this.btnExecute.Click += new System.EventHandler(this.btnExecute_Click); // // progressBar1 // this.progressBar1.Location = new System.Drawing.Point(275, 48); this.progressBar1.Maximum = 5; this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(100, 23); this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar1.TabIndex = 188; this.progressBar1.Tag = "0"; // // progressBar2 // this.progressBar2.Location = new System.Drawing.Point(275, 76); this.progressBar2.Maximum = 5; this.progressBar2.Name = "progressBar2"; this.progressBar2.Size = new System.Drawing.Size(100, 23); this.progressBar2.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar2.TabIndex = 189; this.progressBar2.Tag = "1"; // // btnStop // this.btnStop.Location = new System.Drawing.Point(36, 82); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(111, 23); this.btnStop.TabIndex = 220; this.btnStop.Text = "Stop"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // progressBar4 // this.progressBar4.Location = new System.Drawing.Point(275, 145); this.progressBar4.Maximum = 65535; this.progressBar4.Name = "progressBar4"; this.progressBar4.Size = new System.Drawing.Size(100, 23); this.progressBar4.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar4.TabIndex = 224; this.progressBar4.Tag = "1"; // // progressBar3 // this.progressBar3.Location = new System.Drawing.Point(275, 117); this.progressBar3.Maximum = 65535; this.progressBar3.Name = "progressBar3"; this.progressBar3.Size = new System.Drawing.Size(100, 23); this.progressBar3.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressBar3.TabIndex = 223; this.progressBar3.Tag = "0"; // // lblCount1 // this.lblCount1.AutoSize = true; this.lblCount1.Location = new System.Drawing.Point(184, 150); this.lblCount1.Name = "lblCount1"; this.lblCount1.Size = new System.Drawing.Size(68, 13); this.lblCount1.TabIndex = 222; this.lblCount1.Tag = "1"; this.lblCount1.Text = "Ch 1: Counts"; // // lblCount0 // this.lblCount0.AutoSize = true; this.lblCount0.Location = new System.Drawing.Point(185, 122); this.lblCount0.Name = "lblCount0"; this.lblCount0.Size = new System.Drawing.Size(68, 13); this.lblCount0.TabIndex = 221; this.lblCount0.Tag = "0"; this.lblCount0.Text = "Ch 0: Counts"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(405, 182); this.Controls.Add(this.progressBar4); this.Controls.Add(this.progressBar3); this.Controls.Add(this.lblCount1); this.Controls.Add(this.lblCount0); this.Controls.Add(this.btnStop); this.Controls.Add(this.progressBar2); this.Controls.Add(this.progressBar1); this.Controls.Add(this.btnExecute); this.Controls.Add(this.btnDevice); this.Controls.Add(this.label16); this.Controls.Add(this.lblVolt1); this.Controls.Add(this.lblVolt0); this.MaximizeBox = false; this.Name = "Form1"; this.Tag = "0"; this.Text = "USB-AO ADC Visual C# Sample1"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblVolt0; private System.Windows.Forms.Label lblVolt1; private System.Windows.Forms.Label label16; private System.Windows.Forms.Button btnDevice; private System.Windows.Forms.Button btnExecute; private System.Windows.Forms.ProgressBar progressBar1; private System.Windows.Forms.ProgressBar progressBar2; private System.Windows.Forms.Button btnStop; private System.Windows.Forms.ProgressBar progressBar4; private System.Windows.Forms.ProgressBar progressBar3; private System.Windows.Forms.Label lblCount1; private System.Windows.Forms.Label lblCount0; } }