FrmExec: Extract DataTable_GenerateInserts method to Utiles.
This commit is contained in:
59
ServerExplorer/UI/FrmExec.Designer.cs
generated
59
ServerExplorer/UI/FrmExec.Designer.cs
generated
@@ -29,10 +29,11 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.btnExec = new System.Windows.Forms.Button();
|
||||
this.txtCommand = new ServerExplorer.Controls.CustomTextBox();
|
||||
this.dgvDatos = new System.Windows.Forms.DataGridView();
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.btnGenInserts = new System.Windows.Forms.Button();
|
||||
this.txtCommand = new ServerExplorer.Controls.CustomTextBox();
|
||||
this.txtDestTable = new System.Windows.Forms.TextBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgvDatos)).BeginInit();
|
||||
this.splitContainer1.Panel1.SuspendLayout();
|
||||
this.splitContainer1.Panel2.SuspendLayout();
|
||||
@@ -50,28 +51,14 @@
|
||||
this.btnExec.UseVisualStyleBackColor = true;
|
||||
this.btnExec.Click += new System.EventHandler(this.btnExec_Click);
|
||||
//
|
||||
// txtCommand
|
||||
//
|
||||
this.txtCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.txtCommand.Font = new System.Drawing.Font("Lucida Console", 8.25F);
|
||||
this.txtCommand.Location = new System.Drawing.Point(3, 3);
|
||||
this.txtCommand.Multiline = true;
|
||||
this.txtCommand.Name = "txtCommand";
|
||||
this.txtCommand.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
||||
this.txtCommand.Size = new System.Drawing.Size(604, 57);
|
||||
this.txtCommand.TabIndex = 1;
|
||||
this.txtCommand.TabWidth = 8;
|
||||
//
|
||||
// dgvDatos
|
||||
//
|
||||
this.dgvDatos.AllowUserToAddRows = false;
|
||||
this.dgvDatos.AllowUserToDeleteRows = false;
|
||||
this.dgvDatos.AllowUserToOrderColumns = true;
|
||||
this.dgvDatos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dgvDatos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.dgvDatos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dgvDatos.Location = new System.Drawing.Point(3, 3);
|
||||
this.dgvDatos.Name = "dgvDatos";
|
||||
@@ -82,9 +69,9 @@
|
||||
//
|
||||
// splitContainer1
|
||||
//
|
||||
this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
||||
this.splitContainer1.Location = new System.Drawing.Point(12, 12);
|
||||
this.splitContainer1.Name = "splitContainer1";
|
||||
@@ -92,6 +79,7 @@
|
||||
//
|
||||
// splitContainer1.Panel1
|
||||
//
|
||||
this.splitContainer1.Panel1.Controls.Add(this.txtDestTable);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.btnGenInserts);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.txtCommand);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.btnExec);
|
||||
@@ -105,8 +93,8 @@
|
||||
//
|
||||
// btnGenInserts
|
||||
//
|
||||
this.btnGenInserts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnGenInserts.Location = new System.Drawing.Point(424, 66);
|
||||
this.btnGenInserts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.btnGenInserts.Location = new System.Drawing.Point(3, 66);
|
||||
this.btnGenInserts.Name = "btnGenInserts";
|
||||
this.btnGenInserts.Size = new System.Drawing.Size(102, 23);
|
||||
this.btnGenInserts.TabIndex = 2;
|
||||
@@ -114,6 +102,28 @@
|
||||
this.btnGenInserts.UseVisualStyleBackColor = true;
|
||||
this.btnGenInserts.Click += new System.EventHandler(this.btnGenInserts_Click);
|
||||
//
|
||||
// txtCommand
|
||||
//
|
||||
this.txtCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.txtCommand.Font = new System.Drawing.Font("Lucida Console", 8.25F);
|
||||
this.txtCommand.Location = new System.Drawing.Point(3, 3);
|
||||
this.txtCommand.Multiline = true;
|
||||
this.txtCommand.Name = "txtCommand";
|
||||
this.txtCommand.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
||||
this.txtCommand.Size = new System.Drawing.Size(604, 57);
|
||||
this.txtCommand.TabIndex = 1;
|
||||
this.txtCommand.TabWidth = 8;
|
||||
//
|
||||
// txtDestTable
|
||||
//
|
||||
this.txtDestTable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.txtDestTable.Location = new System.Drawing.Point(111, 68);
|
||||
this.txtDestTable.Name = "txtDestTable";
|
||||
this.txtDestTable.Size = new System.Drawing.Size(126, 20);
|
||||
this.txtDestTable.TabIndex = 3;
|
||||
//
|
||||
// FrmExec
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
@@ -121,7 +131,7 @@
|
||||
this.ClientSize = new System.Drawing.Size(634, 464);
|
||||
this.Controls.Add(this.splitContainer1);
|
||||
this.Name = "FrmExec";
|
||||
this.Text = "frmExec";
|
||||
this.Text = "Exec";
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgvDatos)).EndInit();
|
||||
this.splitContainer1.Panel1.ResumeLayout(false);
|
||||
this.splitContainer1.Panel1.PerformLayout();
|
||||
@@ -138,5 +148,6 @@
|
||||
private System.Windows.Forms.DataGridView dgvDatos;
|
||||
private System.Windows.Forms.SplitContainer splitContainer1;
|
||||
private System.Windows.Forms.Button btnGenInserts;
|
||||
private System.Windows.Forms.TextBox txtDestTable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user