namespace dataImporter
{
partial class frmSurfaceDataImport
{
///
/// 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.txtInstance = new System.Windows.Forms.TextBox();
this.txtSurface = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.btnImport = new System.Windows.Forms.Button();
this.lnkSelectFile = new System.Windows.Forms.LinkLabel();
this.lblSelectedFile = new System.Windows.Forms.Label();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.lblProgressRow = new System.Windows.Forms.Label();
this.txtProgress = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(35, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Database";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(35, 72);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(133, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Surface Name (no spaces)";
//
// txtInstance
//
this.txtInstance.Enabled = false;
this.txtInstance.Location = new System.Drawing.Point(206, 29);
this.txtInstance.Name = "txtInstance";
this.txtInstance.Size = new System.Drawing.Size(215, 20);
this.txtInstance.TabIndex = 2;
//
// txtSurface
//
this.txtSurface.Location = new System.Drawing.Point(206, 69);
this.txtSurface.Name = "txtSurface";
this.txtSurface.Size = new System.Drawing.Size(215, 20);
this.txtSurface.TabIndex = 3;
this.txtSurface.Text = "SupplierPricelistParts";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(35, 206);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(87, 13);
this.label3.TabIndex = 5;
this.label3.Text = "Processing Row:";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// btnImport
//
this.btnImport.Location = new System.Drawing.Point(38, 151);
this.btnImport.Name = "btnImport";
this.btnImport.Size = new System.Drawing.Size(75, 23);
this.btnImport.TabIndex = 6;
this.btnImport.Text = "Import";
this.btnImport.UseVisualStyleBackColor = true;
this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
//
// lnkSelectFile
//
this.lnkSelectFile.AutoSize = true;
this.lnkSelectFile.Location = new System.Drawing.Point(35, 112);
this.lnkSelectFile.Name = "lnkSelectFile";
this.lnkSelectFile.Size = new System.Drawing.Size(125, 13);
this.lnkSelectFile.TabIndex = 7;
this.lnkSelectFile.TabStop = true;
this.lnkSelectFile.Text = "Select Excel file to import";
this.lnkSelectFile.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectFile_LinkClicked);
//
// lblSelectedFile
//
this.lblSelectedFile.AutoSize = true;
this.lblSelectedFile.Location = new System.Drawing.Point(203, 112);
this.lblSelectedFile.Name = "lblSelectedFile";
this.lblSelectedFile.Size = new System.Drawing.Size(33, 13);
this.lblSelectedFile.TabIndex = 8;
this.lblSelectedFile.Text = "None";
//
// backgroundWorker1
//
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
//
// lblProgressRow
//
this.lblProgressRow.AutoSize = true;
this.lblProgressRow.Location = new System.Drawing.Point(128, 206);
this.lblProgressRow.Name = "lblProgressRow";
this.lblProgressRow.Size = new System.Drawing.Size(13, 13);
this.lblProgressRow.TabIndex = 9;
this.lblProgressRow.Text = "0";
//
// txtProgress
//
this.txtProgress.Location = new System.Drawing.Point(38, 222);
this.txtProgress.Multiline = true;
this.txtProgress.Name = "txtProgress";
this.txtProgress.ReadOnly = true;
this.txtProgress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtProgress.Size = new System.Drawing.Size(1213, 319);
this.txtProgress.TabIndex = 4;
//
// frmSurfaceDataImport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1292, 553);
this.Controls.Add(this.lblProgressRow);
this.Controls.Add(this.lblSelectedFile);
this.Controls.Add(this.lnkSelectFile);
this.Controls.Add(this.btnImport);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtProgress);
this.Controls.Add(this.txtSurface);
this.Controls.Add(this.txtInstance);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "frmSurfaceDataImport";
this.Text = "Surface Data Import";
this.Load += new System.EventHandler(this.frmSurfaceDataImport_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtInstance;
private System.Windows.Forms.TextBox txtSurface;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button btnImport;
private System.Windows.Forms.LinkLabel lnkSelectFile;
private System.Windows.Forms.Label lblSelectedFile;
private System.ComponentModel.BackgroundWorker backgroundWorker1;
private System.Windows.Forms.Label lblProgressRow;
private System.Windows.Forms.TextBox txtProgress;
}
}