namespace vcfSplit
{
partial class MainForm
{
///
/// 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.progressBar1 = new System.Windows.Forms.ProgressBar();
this.txtSource = new System.Windows.Forms.TextBox();
this.btnSource = new System.Windows.Forms.Button();
this.txtDestination = new System.Windows.Forms.TextBox();
this.btnDestination = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnSplit = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.SuspendLayout();
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(12, 66);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(388, 23);
this.progressBar1.TabIndex = 0;
//
// txtSource
//
this.txtSource.Location = new System.Drawing.Point(79, 13);
this.txtSource.Name = "txtSource";
this.txtSource.Size = new System.Drawing.Size(320, 20);
this.txtSource.TabIndex = 1;
//
// btnSource
//
this.btnSource.Location = new System.Drawing.Point(406, 9);
this.btnSource.Name = "btnSource";
this.btnSource.Size = new System.Drawing.Size(75, 23);
this.btnSource.TabIndex = 2;
this.btnSource.Text = "&Browse...";
this.btnSource.UseVisualStyleBackColor = true;
this.btnSource.Click += new System.EventHandler(this.button1_Click);
//
// txtDestination
//
this.txtDestination.Location = new System.Drawing.Point(79, 40);
this.txtDestination.Name = "txtDestination";
this.txtDestination.Size = new System.Drawing.Size(321, 20);
this.txtDestination.TabIndex = 3;
//
// btnDestination
//
this.btnDestination.Location = new System.Drawing.Point(406, 37);
this.btnDestination.Name = "btnDestination";
this.btnDestination.Size = new System.Drawing.Size(75, 23);
this.btnDestination.TabIndex = 4;
this.btnDestination.Text = "B&rowse...";
this.btnDestination.UseVisualStyleBackColor = true;
this.btnDestination.Click += new System.EventHandler(this.btnDestination_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Source:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 40);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(63, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Destination:";
//
// btnSplit
//
this.btnSplit.Enabled = false;
this.btnSplit.Location = new System.Drawing.Point(406, 66);
this.btnSplit.Name = "btnSplit";
this.btnSplit.Size = new System.Drawing.Size(75, 23);
this.btnSplit.TabIndex = 7;
this.btnSplit.Text = "&Split!";
this.btnSplit.UseVisualStyleBackColor = true;
this.btnSplit.Click += new System.EventHandler(this.btnSplit_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(493, 102);
this.Controls.Add(this.btnSplit);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnDestination);
this.Controls.Add(this.txtDestination);
this.Controls.Add(this.btnSource);
this.Controls.Add(this.txtSource);
this.Controls.Add(this.progressBar1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "andlewis.com - vCard Splitter";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.TextBox txtSource;
private System.Windows.Forms.Button btnSource;
private System.Windows.Forms.TextBox txtDestination;
private System.Windows.Forms.Button btnDestination;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnSplit;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
}
}