1 namespace Sample_Environment_Control_Interface.Dialogs.VI
 
    8         private System.ComponentModel.IContainer components = null;
 
   14         protected override void Dispose(
bool disposing)
 
   16             if (disposing && (components != null))
 
   20             base.Dispose(disposing);
 
   23         #region Windows Form Designer generated code 
   31             this.label1 = 
new System.Windows.Forms.Label();
 
   32             this.lstVIs = 
new System.Windows.Forms.ListBox();
 
   33             this.btnRemove = 
new System.Windows.Forms.Button();
 
   34             this.label2 = 
new System.Windows.Forms.Label();
 
   35             this.lstToRemove = 
new System.Windows.Forms.ListBox();
 
   36             this.btnUndo = 
new System.Windows.Forms.Button();
 
   37             this.btnCancel = 
new System.Windows.Forms.Button();
 
   38             this.btnOK = 
new System.Windows.Forms.Button();
 
   43             this.label1.AutoSize = 
true;
 
   44             this.label1.Font = 
new System.Drawing.Font(
"Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 
   45             this.label1.Location = 
new System.Drawing.Point(9, 9);
 
   46             this.label1.Name = 
"label1";
 
   47             this.label1.Size = 
new System.Drawing.Size(148, 16);
 
   48             this.label1.TabIndex = 0;
 
   49             this.label1.Text = 
"Select VI(s) to Remove:";
 
   53             this.lstVIs.FormattingEnabled = 
true;
 
   54             this.lstVIs.Location = 
new System.Drawing.Point(12, 28);
 
   55             this.lstVIs.Name = 
"lstVIs";
 
   56             this.lstVIs.Size = 
new System.Drawing.Size(360, 147);
 
   57             this.lstVIs.TabIndex = 1;
 
   61             this.btnRemove.Location = 
new System.Drawing.Point(378, 63);
 
   62             this.btnRemove.Name = 
"btnRemove";
 
   63             this.btnRemove.Size = 
new System.Drawing.Size(38, 23);
 
   64             this.btnRemove.TabIndex = 2;
 
   65             this.btnRemove.Text = 
"-->";
 
   66             this.btnRemove.UseVisualStyleBackColor = 
true;
 
   67             this.btnRemove.Click += 
new System.EventHandler(this.btnRemove_Click);
 
   71             this.label2.AutoSize = 
true;
 
   72             this.label2.Font = 
new System.Drawing.Font(
"Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 
   73             this.label2.Location = 
new System.Drawing.Point(421, 9);
 
   74             this.label2.Name = 
"label2";
 
   75             this.label2.Size = 
new System.Drawing.Size(107, 16);
 
   76             this.label2.TabIndex = 3;
 
   77             this.label2.Text = 
"VI(s) to Remove:";
 
   81             this.lstToRemove.FormattingEnabled = 
true;
 
   82             this.lstToRemove.Location = 
new System.Drawing.Point(424, 30);
 
   83             this.lstToRemove.Name = 
"lstToRemove";
 
   84             this.lstToRemove.Size = 
new System.Drawing.Size(360, 147);
 
   85             this.lstToRemove.TabIndex = 4;
 
   89             this.btnUndo.Location = 
new System.Drawing.Point(378, 92);
 
   90             this.btnUndo.Name = 
"btnUndo";
 
   91             this.btnUndo.Size = 
new System.Drawing.Size(38, 23);
 
   92             this.btnUndo.TabIndex = 5;
 
   93             this.btnUndo.Text = 
"<--";
 
   94             this.btnUndo.UseVisualStyleBackColor = 
true;
 
   95             this.btnUndo.Click += 
new System.EventHandler(this.btnUndo_Click);
 
   99             this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 
  100             this.btnCancel.Location = 
new System.Drawing.Point(709, 183);
 
  101             this.btnCancel.Name = 
"btnCancel";
 
  102             this.btnCancel.Size = 
new System.Drawing.Size(75, 23);
 
  103             this.btnCancel.TabIndex = 6;
 
  104             this.btnCancel.Text = 
"Cancel";
 
  105             this.btnCancel.UseVisualStyleBackColor = 
true;
 
  109             this.btnOK.Location = 
new System.Drawing.Point(628, 183);
 
  110             this.btnOK.Name = 
"btnOK";
 
  111             this.btnOK.Size = 
new System.Drawing.Size(75, 23);
 
  112             this.btnOK.TabIndex = 7;
 
  113             this.btnOK.Text = 
"OK";
 
  114             this.btnOK.UseVisualStyleBackColor = 
true;
 
  115             this.btnOK.Click += 
new System.EventHandler(this.btnOK_Click);
 
  119             this.AcceptButton = this.btnOK;
 
  120             this.AutoScaleDimensions = 
new System.Drawing.SizeF(6F, 13F);
 
  121             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
  122             this.CancelButton = this.btnCancel;
 
  123             this.ClientSize = 
new System.Drawing.Size(796, 218);
 
  124             this.ControlBox = 
false;
 
  125             this.Controls.Add(this.btnOK);
 
  126             this.Controls.Add(this.btnCancel);
 
  127             this.Controls.Add(this.btnUndo);
 
  128             this.Controls.Add(this.lstToRemove);
 
  129             this.Controls.Add(this.label2);
 
  130             this.Controls.Add(this.btnRemove);
 
  131             this.Controls.Add(this.lstVIs);
 
  132             this.Controls.Add(this.label1);
 
  133             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 
  134             this.Name = 
"RemoveVI";
 
  135             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 
  136             this.Text = 
"Remove VI\'s";
 
  137             this.Load += 
new System.EventHandler(this.RemoveVI_Load);
 
  138             this.ResumeLayout(
false);
 
  139             this.PerformLayout();
 
  145         private System.Windows.Forms.Label 
label1;
 
  146         private System.Windows.Forms.ListBox 
lstVIs;
 
  148         private System.Windows.Forms.Label 
label2;
 
  152         private System.Windows.Forms.Button 
btnOK;
 
System.Windows.Forms.Label label1
System.Windows.Forms.Label label2
System.Windows.Forms.ListBox lstVIs
System.Windows.Forms.Button btnUndo
System.Windows.Forms.Button btnCancel
System.Windows.Forms.ListBox lstToRemove
override void Dispose(bool disposing)
Clean up any resources being used. 
void InitializeComponent()
Required method for Designer support - do not modify the contents of this method with the code editor...
System.Windows.Forms.Button btnOK
System.Windows.Forms.Button btnRemove