namespace MiniSqlQuery {
partial class CopyForm {
/// <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.rbCSV = new System.Windows.Forms.RadioButton();
this.rbTAB = new System.Windows.Forms.RadioButton();
this.rbOther = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtOther = new System.Windows.Forms.TextBox();
this.xbIncludeHeaders = new System.Windows.Forms.CheckBox();
this.cancelButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// rbCSV
//
this.rbCSV.AutoSize = true;
this.rbCSV.Location = new System.Drawing.Point(6, 18);
this.rbCSV.Name = "rbCSV";
this.rbCSV.Size = new System.Drawing.Size(47, 16);
this.rbCSV.TabIndex = 3;
this.rbCSV.TabStop = true;
this.rbCSV.Text = "����";
this.rbCSV.UseVisualStyleBackColor = true;
//
// rbTAB
//
this.rbTAB.AutoSize = true;
this.rbTAB.Checked = true;
this.rbTAB.Location = new System.Drawing.Point(6, 39);
this.rbTAB.Name = "rbTAB";
this.rbTAB.Size = new System.Drawing.Size(41, 16);
this.rbTAB.TabIndex = 4;
this.rbTAB.TabStop = true;
this.rbTAB.Text = "TAB";
this.rbTAB.UseVisualStyleBackColor = true;
//
// rbOther
//
this.rbOther.AutoSize = true;
this.rbOther.Location = new System.Drawing.Point(6, 60);
this.rbOther.Name = "rbOther";
this.rbOther.Size = new System.Drawing.Size(47, 16);
this.rbOther.TabIndex = 5;
this.rbOther.TabStop = true;
this.rbOther.Text = "����";
this.rbOther.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtOther);
this.groupBox1.Controls.Add(this.rbCSV);
this.groupBox1.Controls.Add(this.rbOther);
this.groupBox1.Controls.Add(this.rbTAB);
this.groupBox1.Location = new System.Drawing.Point(12, 32);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(142, 84);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "�ָ��";
//
// txtOther
//
this.txtOther.Location = new System.Drawing.Point(63, 57);
this.txtOther.Name = "txtOther";
this.txtOther.Size = new System.Drawing.Size(59, 21);
this.txtOther.TabIndex = 6;
this.txtOther.Text = "|";
//
// xbIncludeHeaders
//
this.xbIncludeHeaders.AutoSize = true;
this.xbIncludeHeaders.Location = new System.Drawing.Point(12, 11);
this.xbIncludeHeaders.Name = "xbIncludeHeaders";
this.xbIncludeHeaders.Size = new System.Drawing.Size(84, 16);
this.xbIncludeHeaders.TabIndex = 1;
this.xbIncludeHeaders.Text = "�������";
this.xbIncludeHeaders.UseVisualStyleBackColor = true;
//
// cancelButton
//
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(89, 132);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(65, 21);
this.cancelButton.TabIndex = 9;
this.cancelButton.Text = "&Cȡ��";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// okButton
//
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(12, 132);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(65, 21);
this.okButton.TabIndex = 8;
this.okButton.Text = "&Oȷ��";
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// CopyForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(163, 161);
this.Controls.Add(this.okButton);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.xbIncludeHeaders);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CopyForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "����";
this.Load += new System.EventHandler(this.CopyForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton rbCSV;
private System.Windows.Forms.RadioButton rbTAB;
private System.Windows.Forms.RadioButton rbOther;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtOther;
private System.Windows.Forms.CheckBox xbIncludeHeaders;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button okButton;
}
}
|