diff --git a/minisqlquery-master/src/MiniSqlQuery/CopyForm.Designer.cs b/minisqlquery-master/src/MiniSqlQuery/CopyForm.Designer.cs
new file mode 100644
index 0000000..0c308c0
--- /dev/null
+++ b/minisqlquery-master/src/MiniSqlQuery/CopyForm.Designer.cs
@@ -0,0 +1,159 @@
+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, 19);
+ this.rbCSV.Name = "rbCSV";
+ this.rbCSV.Size = new System.Drawing.Size(60, 17);
+ this.rbCSV.TabIndex = 3;
+ this.rbCSV.TabStop = true;
+ this.rbCSV.Text = "Comma";
+ this.rbCSV.UseVisualStyleBackColor = true;
+ //
+ // rbTAB
+ //
+ this.rbTAB.AutoSize = true;
+ this.rbTAB.Checked = true;
+ this.rbTAB.Location = new System.Drawing.Point(6, 42);
+ this.rbTAB.Name = "rbTAB";
+ this.rbTAB.Size = new System.Drawing.Size(46, 17);
+ 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, 65);
+ this.rbOther.Name = "rbOther";
+ this.rbOther.Size = new System.Drawing.Size(51, 17);
+ this.rbOther.TabIndex = 5;
+ this.rbOther.TabStop = true;
+ this.rbOther.Text = "Other";
+ 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, 35);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(142, 91);
+ this.groupBox1.TabIndex = 2;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "Delimiter";
+ //
+ // txtOther
+ //
+ this.txtOther.Location = new System.Drawing.Point(63, 62);
+ this.txtOther.Name = "txtOther";
+ this.txtOther.Size = new System.Drawing.Size(59, 20);
+ this.txtOther.TabIndex = 6;
+ this.txtOther.Text = "|";
+ //
+ // xbIncludeHeaders
+ //
+ this.xbIncludeHeaders.AutoSize = true;
+ this.xbIncludeHeaders.Location = new System.Drawing.Point(12, 12);
+ this.xbIncludeHeaders.Name = "xbIncludeHeaders";
+ this.xbIncludeHeaders.Size = new System.Drawing.Size(142, 17);
+ this.xbIncludeHeaders.TabIndex = 1;
+ this.xbIncludeHeaders.Text = "Include Column Headers";
+ this.xbIncludeHeaders.UseVisualStyleBackColor = true;
+ //
+ // cancelButton
+ //
+ this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ this.cancelButton.Location = new System.Drawing.Point(89, 143);
+ this.cancelButton.Name = "cancelButton";
+ this.cancelButton.Size = new System.Drawing.Size(65, 23);
+ this.cancelButton.TabIndex = 9;
+ this.cancelButton.Text = "&Cancel";
+ 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, 143);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(65, 23);
+ this.okButton.TabIndex = 8;
+ this.okButton.Text = "&OK";
+ this.okButton.Click += new System.EventHandler(this.okButton_Click);
+ //
+ // CopyForm
+ //
+ this.AcceptButton = this.okButton;
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(163, 174);
+ 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 = "Copy";
+ 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;
+ }
+}