Added code to handle importing a procedure with different RO folder
This commit is contained in:
108
PROMS/VEPROMS User Interface/dlgPickROFolder.Designer.cs
generated
Normal file
108
PROMS/VEPROMS User Interface/dlgPickROFolder.Designer.cs
generated
Normal file
@@ -0,0 +1,108 @@
|
||||
namespace VEPROMS
|
||||
{
|
||||
partial class dlgPickROFolder
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.lblImportRO = new System.Windows.Forms.Label();
|
||||
this.clbLocalROFolders = new System.Windows.Forms.CheckedListBox();
|
||||
this.btnOkay = new System.Windows.Forms.Button();
|
||||
this.btnCancel = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// lblImportRO
|
||||
//
|
||||
this.lblImportRO.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.lblImportRO.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.lblImportRO.Location = new System.Drawing.Point(8, 8);
|
||||
this.lblImportRO.Margin = new System.Windows.Forms.Padding(8);
|
||||
this.lblImportRO.Name = "lblImportRO";
|
||||
this.lblImportRO.Size = new System.Drawing.Size(278, 120);
|
||||
this.lblImportRO.TabIndex = 0;
|
||||
this.lblImportRO.Text = "label1";
|
||||
//
|
||||
// clbLocalROFolders
|
||||
//
|
||||
this.clbLocalROFolders.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.clbLocalROFolders.FormattingEnabled = true;
|
||||
this.clbLocalROFolders.Location = new System.Drawing.Point(8, 128);
|
||||
this.clbLocalROFolders.Name = "clbLocalROFolders";
|
||||
this.clbLocalROFolders.Size = new System.Drawing.Size(278, 124);
|
||||
this.clbLocalROFolders.TabIndex = 2;
|
||||
this.clbLocalROFolders.SelectedIndexChanged += new System.EventHandler(this.clbLocalROFolders_SelectedIndexChanged);
|
||||
//
|
||||
// btnOkay
|
||||
//
|
||||
this.btnOkay.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
this.btnOkay.Enabled = false;
|
||||
this.btnOkay.Location = new System.Drawing.Point(11, 258);
|
||||
this.btnOkay.Name = "btnOkay";
|
||||
this.btnOkay.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnOkay.TabIndex = 3;
|
||||
this.btnOkay.Text = "Okay";
|
||||
this.btnOkay.UseVisualStyleBackColor = true;
|
||||
this.btnOkay.Click += new System.EventHandler(this.btnOkay_Click);
|
||||
//
|
||||
// btnCancel
|
||||
//
|
||||
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.btnCancel.Location = new System.Drawing.Point(208, 258);
|
||||
this.btnCancel.Name = "btnCancel";
|
||||
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnCancel.TabIndex = 4;
|
||||
this.btnCancel.Text = "Cancel";
|
||||
this.btnCancel.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// dlgPickROFolder
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(294, 292);
|
||||
this.Controls.Add(this.btnCancel);
|
||||
this.Controls.Add(this.btnOkay);
|
||||
this.Controls.Add(this.clbLocalROFolders);
|
||||
this.Controls.Add(this.lblImportRO);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "dlgPickROFolder";
|
||||
this.Padding = new System.Windows.Forms.Padding(8);
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Pick RO Folder";
|
||||
this.Load += new System.EventHandler(this.dlgPickROFolder_Load);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label lblImportRO;
|
||||
private System.Windows.Forms.CheckedListBox clbLocalROFolders;
|
||||
private System.Windows.Forms.Button btnOkay;
|
||||
private System.Windows.Forms.Button btnCancel;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user