You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
655 lines
33 KiB
655 lines
33 KiB
|
|
namespace ExportDataToFile
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// 設計工具所需的變數。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清除任何使用中的資源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果應該處置受控資源則為 true,否則為 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form 設計工具產生的程式碼
|
|
|
|
/// <summary>
|
|
/// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改
|
|
/// 這個方法的內容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.txtTargetID = new System.Windows.Forms.TextBox();
|
|
this.label7 = new System.Windows.Forms.Label();
|
|
this.txtTargetDBName = new System.Windows.Forms.TextBox();
|
|
this.label8 = new System.Windows.Forms.Label();
|
|
this.txtTargetIP = new System.Windows.Forms.TextBox();
|
|
this.label9 = new System.Windows.Forms.Label();
|
|
this.cbTargetClass = new System.Windows.Forms.ComboBox();
|
|
this.label10 = new System.Windows.Forms.Label();
|
|
this.txtSourceID = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.txtSourceDBName = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.txtSourceIP = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.cbSourceClass = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnExport = new System.Windows.Forms.Button();
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
this.btnTargetConnTest = new System.Windows.Forms.Button();
|
|
this.txtTargetPWD = new System.Windows.Forms.TextBox();
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
this.btnSourceConnTest = new System.Windows.Forms.Button();
|
|
this.txtSourcePWD = new System.Windows.Forms.TextBox();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.dgvExportList = new System.Windows.Forms.DataGridView();
|
|
this.label11 = new System.Windows.Forms.Label();
|
|
this.dgvColumnMapping = new System.Windows.Forms.DataGridView();
|
|
this.txtWhere = new System.Windows.Forms.TextBox();
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
this.label14 = new System.Windows.Forms.Label();
|
|
this.cbTargetTable = new System.Windows.Forms.ComboBox();
|
|
this.btnMapping = new System.Windows.Forms.Button();
|
|
this.sfPath = new System.Windows.Forms.SaveFileDialog();
|
|
this.clExpColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.clClean = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.clSourceColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clType = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clTargetColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
|
|
this.clExport = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.clCancel = new System.Windows.Forms.DataGridViewButtonColumn();
|
|
this.clSourceTable = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clTargetTable = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clTableDel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.clMaxRecord = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clWhere = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.clMappingData = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvExportList)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvColumnMapping)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtTargetID
|
|
//
|
|
this.txtTargetID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtTargetID.Location = new System.Drawing.Point(1136, 47);
|
|
this.txtTargetID.Name = "txtTargetID";
|
|
this.txtTargetID.Size = new System.Drawing.Size(135, 29);
|
|
this.txtTargetID.TabIndex = 34;
|
|
this.txtTargetID.Text = "sa";
|
|
//
|
|
// label7
|
|
//
|
|
this.label7.AutoSize = true;
|
|
this.label7.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label7.Location = new System.Drawing.Point(1009, 50);
|
|
this.label7.Name = "label7";
|
|
this.label7.Size = new System.Drawing.Size(121, 20);
|
|
this.label7.TabIndex = 33;
|
|
this.label7.Text = "來源資料庫帳號";
|
|
//
|
|
// txtTargetDBName
|
|
//
|
|
this.txtTargetDBName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtTargetDBName.Location = new System.Drawing.Point(795, 46);
|
|
this.txtTargetDBName.Name = "txtTargetDBName";
|
|
this.txtTargetDBName.Size = new System.Drawing.Size(135, 29);
|
|
this.txtTargetDBName.TabIndex = 32;
|
|
this.txtTargetDBName.Text = "OPMS_Online";
|
|
//
|
|
// label8
|
|
//
|
|
this.label8.AutoSize = true;
|
|
this.label8.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label8.Location = new System.Drawing.Point(668, 50);
|
|
this.label8.Name = "label8";
|
|
this.label8.Size = new System.Drawing.Size(121, 20);
|
|
this.label8.TabIndex = 31;
|
|
this.label8.Text = "目標資料庫名稱";
|
|
//
|
|
// txtTargetIP
|
|
//
|
|
this.txtTargetIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtTargetIP.Location = new System.Drawing.Point(460, 46);
|
|
this.txtTargetIP.Name = "txtTargetIP";
|
|
this.txtTargetIP.Size = new System.Drawing.Size(135, 29);
|
|
this.txtTargetIP.TabIndex = 30;
|
|
this.txtTargetIP.Text = ".";
|
|
//
|
|
// label9
|
|
//
|
|
this.label9.AutoSize = true;
|
|
this.label9.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label9.Location = new System.Drawing.Point(350, 50);
|
|
this.label9.Name = "label9";
|
|
this.label9.Size = new System.Drawing.Size(104, 20);
|
|
this.label9.TabIndex = 29;
|
|
this.label9.Text = "目標資料庫IP";
|
|
//
|
|
// cbTargetClass
|
|
//
|
|
this.cbTargetClass.FormattingEnabled = true;
|
|
this.cbTargetClass.Items.AddRange(new object[] {
|
|
"",
|
|
"MS-SQL",
|
|
"MySQL",
|
|
"Oracle",
|
|
"PostgreSQL"});
|
|
this.cbTargetClass.Location = new System.Drawing.Point(142, 47);
|
|
this.cbTargetClass.Name = "cbTargetClass";
|
|
this.cbTargetClass.Size = new System.Drawing.Size(163, 28);
|
|
this.cbTargetClass.TabIndex = 28;
|
|
//
|
|
// label10
|
|
//
|
|
this.label10.AutoSize = true;
|
|
this.label10.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label10.Location = new System.Drawing.Point(14, 50);
|
|
this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label10.Name = "label10";
|
|
this.label10.Size = new System.Drawing.Size(121, 20);
|
|
this.label10.TabIndex = 27;
|
|
this.label10.Text = "目標資料庫類型";
|
|
//
|
|
// txtSourceID
|
|
//
|
|
this.txtSourceID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtSourceID.Location = new System.Drawing.Point(1136, 12);
|
|
this.txtSourceID.Name = "txtSourceID";
|
|
this.txtSourceID.Size = new System.Drawing.Size(135, 29);
|
|
this.txtSourceID.TabIndex = 26;
|
|
this.txtSourceID.Text = "sa";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label4.Location = new System.Drawing.Point(1009, 15);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(121, 20);
|
|
this.label4.TabIndex = 25;
|
|
this.label4.Text = "來源資料庫帳號";
|
|
//
|
|
// txtSourceDBName
|
|
//
|
|
this.txtSourceDBName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtSourceDBName.Location = new System.Drawing.Point(795, 11);
|
|
this.txtSourceDBName.Name = "txtSourceDBName";
|
|
this.txtSourceDBName.Size = new System.Drawing.Size(135, 29);
|
|
this.txtSourceDBName.TabIndex = 24;
|
|
this.txtSourceDBName.Text = "OPMS_Online";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label3.Location = new System.Drawing.Point(668, 15);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(121, 20);
|
|
this.label3.TabIndex = 23;
|
|
this.label3.Text = "來源資料庫名稱";
|
|
//
|
|
// txtSourceIP
|
|
//
|
|
this.txtSourceIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtSourceIP.Location = new System.Drawing.Point(460, 11);
|
|
this.txtSourceIP.Name = "txtSourceIP";
|
|
this.txtSourceIP.Size = new System.Drawing.Size(135, 29);
|
|
this.txtSourceIP.TabIndex = 22;
|
|
this.txtSourceIP.Text = ".";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label2.Location = new System.Drawing.Point(350, 15);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(104, 20);
|
|
this.label2.TabIndex = 21;
|
|
this.label2.Text = "來源資料庫IP";
|
|
//
|
|
// cbSourceClass
|
|
//
|
|
this.cbSourceClass.FormattingEnabled = true;
|
|
this.cbSourceClass.Items.AddRange(new object[] {
|
|
"",
|
|
"MS-SQL",
|
|
"MySQL",
|
|
"Oracle",
|
|
"PostgreSQL"});
|
|
this.cbSourceClass.Location = new System.Drawing.Point(142, 12);
|
|
this.cbSourceClass.Name = "cbSourceClass";
|
|
this.cbSourceClass.Size = new System.Drawing.Size(163, 28);
|
|
this.cbSourceClass.TabIndex = 20;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.ForeColor = System.Drawing.SystemColors.ButtonFace;
|
|
this.label1.Location = new System.Drawing.Point(14, 15);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(121, 20);
|
|
this.label1.TabIndex = 19;
|
|
this.label1.Text = "來源資料庫類型";
|
|
//
|
|
// btnExport
|
|
//
|
|
this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnExport.Enabled = false;
|
|
this.btnExport.Location = new System.Drawing.Point(1649, 85);
|
|
this.btnExport.Name = "btnExport";
|
|
this.btnExport.Size = new System.Drawing.Size(135, 30);
|
|
this.btnExport.TabIndex = 42;
|
|
this.btnExport.Text = "資料匯出";
|
|
this.btnExport.UseVisualStyleBackColor = true;
|
|
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
|
|
//
|
|
// label12
|
|
//
|
|
this.label12.AutoSize = true;
|
|
this.label12.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label12.Location = new System.Drawing.Point(1224, 157);
|
|
this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label12.Name = "label12";
|
|
this.label12.Size = new System.Drawing.Size(73, 20);
|
|
this.label12.TabIndex = 41;
|
|
this.label12.Text = "欄位對應";
|
|
//
|
|
// btnTargetConnTest
|
|
//
|
|
this.btnTargetConnTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnTargetConnTest.Location = new System.Drawing.Point(1649, 45);
|
|
this.btnTargetConnTest.Name = "btnTargetConnTest";
|
|
this.btnTargetConnTest.Size = new System.Drawing.Size(135, 30);
|
|
this.btnTargetConnTest.TabIndex = 40;
|
|
this.btnTargetConnTest.Text = "建立目標連線";
|
|
this.btnTargetConnTest.UseVisualStyleBackColor = true;
|
|
this.btnTargetConnTest.Click += new System.EventHandler(this.btnTargetConnTest_Click);
|
|
//
|
|
// txtTargetPWD
|
|
//
|
|
this.txtTargetPWD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtTargetPWD.Location = new System.Drawing.Point(1470, 46);
|
|
this.txtTargetPWD.Name = "txtTargetPWD";
|
|
this.txtTargetPWD.PasswordChar = '*';
|
|
this.txtTargetPWD.Size = new System.Drawing.Size(135, 29);
|
|
this.txtTargetPWD.TabIndex = 39;
|
|
this.txtTargetPWD.Text = "i\'mnelson";
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label6.Location = new System.Drawing.Point(1343, 50);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new System.Drawing.Size(121, 20);
|
|
this.label6.TabIndex = 38;
|
|
this.label6.Text = "來源資料庫帳號";
|
|
//
|
|
// btnSourceConnTest
|
|
//
|
|
this.btnSourceConnTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnSourceConnTest.Location = new System.Drawing.Point(1649, 12);
|
|
this.btnSourceConnTest.Name = "btnSourceConnTest";
|
|
this.btnSourceConnTest.Size = new System.Drawing.Size(135, 30);
|
|
this.btnSourceConnTest.TabIndex = 37;
|
|
this.btnSourceConnTest.Text = "建立來源連線";
|
|
this.btnSourceConnTest.UseVisualStyleBackColor = true;
|
|
this.btnSourceConnTest.Click += new System.EventHandler(this.btnSourceConnTest_Click);
|
|
//
|
|
// txtSourcePWD
|
|
//
|
|
this.txtSourcePWD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtSourcePWD.Location = new System.Drawing.Point(1470, 13);
|
|
this.txtSourcePWD.Name = "txtSourcePWD";
|
|
this.txtSourcePWD.PasswordChar = '*';
|
|
this.txtSourcePWD.Size = new System.Drawing.Size(135, 29);
|
|
this.txtSourcePWD.TabIndex = 36;
|
|
this.txtSourcePWD.Text = "i\'mnelson";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label5.Location = new System.Drawing.Point(1343, 15);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(121, 20);
|
|
this.label5.TabIndex = 35;
|
|
this.label5.Text = "來源資料庫帳號";
|
|
//
|
|
// dgvExportList
|
|
//
|
|
this.dgvExportList.AllowUserToAddRows = false;
|
|
this.dgvExportList.AllowUserToDeleteRows = false;
|
|
this.dgvExportList.AllowUserToOrderColumns = true;
|
|
this.dgvExportList.AllowUserToResizeRows = false;
|
|
this.dgvExportList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)));
|
|
this.dgvExportList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvExportList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.clExport,
|
|
this.clCancel,
|
|
this.clSourceTable,
|
|
this.clTargetTable,
|
|
this.clTableDel,
|
|
this.clMaxRecord,
|
|
this.clWhere,
|
|
this.clMappingData});
|
|
this.dgvExportList.Location = new System.Drawing.Point(18, 125);
|
|
this.dgvExportList.Name = "dgvExportList";
|
|
this.dgvExportList.RowTemplate.Height = 25;
|
|
this.dgvExportList.Size = new System.Drawing.Size(1204, 924);
|
|
this.dgvExportList.TabIndex = 44;
|
|
this.dgvExportList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvExportList_CellClick);
|
|
this.dgvExportList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvExportList_CellContentClick);
|
|
this.dgvExportList.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvExportList_CellEndEdit);
|
|
//
|
|
// label11
|
|
//
|
|
this.label11.AutoSize = true;
|
|
this.label11.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label11.Location = new System.Drawing.Point(18, 102);
|
|
this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label11.Name = "label11";
|
|
this.label11.Size = new System.Drawing.Size(121, 20);
|
|
this.label11.TabIndex = 43;
|
|
this.label11.Text = "匯出資料表列表";
|
|
//
|
|
// dgvColumnMapping
|
|
//
|
|
this.dgvColumnMapping.AllowUserToAddRows = false;
|
|
this.dgvColumnMapping.AllowUserToDeleteRows = false;
|
|
this.dgvColumnMapping.AllowUserToOrderColumns = true;
|
|
this.dgvColumnMapping.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dgvColumnMapping.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgvColumnMapping.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.clExpColumn,
|
|
this.clClean,
|
|
this.clSourceColumn,
|
|
this.clType,
|
|
this.clTargetColumn});
|
|
this.dgvColumnMapping.Location = new System.Drawing.Point(1228, 180);
|
|
this.dgvColumnMapping.Name = "dgvColumnMapping";
|
|
this.dgvColumnMapping.RowTemplate.Height = 25;
|
|
this.dgvColumnMapping.Size = new System.Drawing.Size(556, 342);
|
|
this.dgvColumnMapping.TabIndex = 45;
|
|
this.dgvColumnMapping.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvColumnMapping_CellContentClick);
|
|
this.dgvColumnMapping.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvColumnMapping_CellEndEdit);
|
|
//
|
|
// txtWhere
|
|
//
|
|
this.txtWhere.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.txtWhere.Location = new System.Drawing.Point(1228, 556);
|
|
this.txtWhere.Multiline = true;
|
|
this.txtWhere.Name = "txtWhere";
|
|
this.txtWhere.Size = new System.Drawing.Size(556, 457);
|
|
this.txtWhere.TabIndex = 47;
|
|
//
|
|
// label13
|
|
//
|
|
this.label13.AutoSize = true;
|
|
this.label13.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label13.Location = new System.Drawing.Point(1228, 533);
|
|
this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label13.Name = "label13";
|
|
this.label13.Size = new System.Drawing.Size(73, 20);
|
|
this.label13.TabIndex = 46;
|
|
this.label13.Text = "過濾條件";
|
|
//
|
|
// label14
|
|
//
|
|
this.label14.AutoSize = true;
|
|
this.label14.ForeColor = System.Drawing.SystemColors.ControlLight;
|
|
this.label14.Location = new System.Drawing.Point(1224, 125);
|
|
this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.label14.Name = "label14";
|
|
this.label14.Size = new System.Drawing.Size(89, 20);
|
|
this.label14.TabIndex = 48;
|
|
this.label14.Text = "目標資料表";
|
|
//
|
|
// cbTargetTable
|
|
//
|
|
this.cbTargetTable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.cbTargetTable.DisplayMember = "TableName";
|
|
this.cbTargetTable.Enabled = false;
|
|
this.cbTargetTable.FormattingEnabled = true;
|
|
this.cbTargetTable.Location = new System.Drawing.Point(1320, 122);
|
|
this.cbTargetTable.Name = "cbTargetTable";
|
|
this.cbTargetTable.Size = new System.Drawing.Size(464, 28);
|
|
this.cbTargetTable.TabIndex = 49;
|
|
this.cbTargetTable.ValueMember = "TableName";
|
|
this.cbTargetTable.SelectedIndexChanged += new System.EventHandler(this.cbTargetTable_SelectedIndexChanged);
|
|
//
|
|
// btnMapping
|
|
//
|
|
this.btnMapping.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnMapping.Location = new System.Drawing.Point(1697, 1019);
|
|
this.btnMapping.Name = "btnMapping";
|
|
this.btnMapping.Size = new System.Drawing.Size(87, 33);
|
|
this.btnMapping.TabIndex = 50;
|
|
this.btnMapping.Text = "設 定";
|
|
this.btnMapping.UseVisualStyleBackColor = true;
|
|
this.btnMapping.Click += new System.EventHandler(this.btnMapping_Click);
|
|
//
|
|
// clExpColumn
|
|
//
|
|
this.clExpColumn.HeaderText = "匯出";
|
|
this.clExpColumn.Name = "clExpColumn";
|
|
this.clExpColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.clExpColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
this.clExpColumn.Width = 65;
|
|
//
|
|
// clClean
|
|
//
|
|
this.clClean.HeaderText = "清除";
|
|
this.clClean.Name = "clClean";
|
|
this.clClean.Width = 50;
|
|
//
|
|
// clSourceColumn
|
|
//
|
|
this.clSourceColumn.DataPropertyName = "COLUMN_NAME";
|
|
this.clSourceColumn.HeaderText = "來源欄位";
|
|
this.clSourceColumn.Name = "clSourceColumn";
|
|
this.clSourceColumn.ReadOnly = true;
|
|
this.clSourceColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.clSourceColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
|
this.clSourceColumn.Width = 200;
|
|
//
|
|
// clType
|
|
//
|
|
this.clType.DataPropertyName = "DATA_TYPE";
|
|
this.clType.HeaderText = "型態";
|
|
this.clType.Name = "clType";
|
|
this.clType.Width = 80;
|
|
//
|
|
// clTargetColumn
|
|
//
|
|
this.clTargetColumn.HeaderText = "目標欄位";
|
|
this.clTargetColumn.Name = "clTargetColumn";
|
|
this.clTargetColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.clTargetColumn.Width = 200;
|
|
//
|
|
// clExport
|
|
//
|
|
this.clExport.FalseValue = "false";
|
|
this.clExport.Frozen = true;
|
|
this.clExport.HeaderText = "匯出";
|
|
this.clExport.IndeterminateValue = "false";
|
|
this.clExport.Name = "clExport";
|
|
this.clExport.ReadOnly = true;
|
|
this.clExport.TrueValue = "true";
|
|
this.clExport.Width = 55;
|
|
//
|
|
// clCancel
|
|
//
|
|
this.clCancel.Frozen = true;
|
|
this.clCancel.HeaderText = "清除";
|
|
this.clCancel.Name = "clCancel";
|
|
this.clCancel.Text = "Clean";
|
|
this.clCancel.Width = 55;
|
|
//
|
|
// clSourceTable
|
|
//
|
|
this.clSourceTable.DataPropertyName = "TableName";
|
|
this.clSourceTable.Frozen = true;
|
|
this.clSourceTable.HeaderText = "來源資料表名稱";
|
|
this.clSourceTable.Name = "clSourceTable";
|
|
this.clSourceTable.ReadOnly = true;
|
|
this.clSourceTable.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.clSourceTable.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
|
this.clSourceTable.Width = 300;
|
|
//
|
|
// clTargetTable
|
|
//
|
|
this.clTargetTable.HeaderText = "目標資料表名稱";
|
|
this.clTargetTable.Name = "clTargetTable";
|
|
this.clTargetTable.ReadOnly = true;
|
|
this.clTargetTable.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.clTargetTable.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
|
|
this.clTargetTable.Width = 300;
|
|
//
|
|
// clTableDel
|
|
//
|
|
this.clTableDel.HeaderText = "清除目標資料表內容";
|
|
this.clTableDel.Name = "clTableDel";
|
|
this.clTableDel.Width = 180;
|
|
//
|
|
// clMaxRecord
|
|
//
|
|
this.clMaxRecord.HeaderText = "檔案匯出上限筆數";
|
|
this.clMaxRecord.Name = "clMaxRecord";
|
|
this.clMaxRecord.Width = 160;
|
|
//
|
|
// clWhere
|
|
//
|
|
this.clWhere.HeaderText = "過濾條件";
|
|
this.clWhere.Name = "clWhere";
|
|
this.clWhere.Visible = false;
|
|
this.clWhere.Width = 200;
|
|
//
|
|
// clMappingData
|
|
//
|
|
this.clMappingData.HeaderText = "欄位對應";
|
|
this.clMappingData.Name = "clMappingData";
|
|
this.clMappingData.Visible = false;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
this.ClientSize = new System.Drawing.Size(1796, 1061);
|
|
this.Controls.Add(this.btnMapping);
|
|
this.Controls.Add(this.cbTargetTable);
|
|
this.Controls.Add(this.label14);
|
|
this.Controls.Add(this.txtWhere);
|
|
this.Controls.Add(this.label13);
|
|
this.Controls.Add(this.dgvColumnMapping);
|
|
this.Controls.Add(this.dgvExportList);
|
|
this.Controls.Add(this.label11);
|
|
this.Controls.Add(this.btnExport);
|
|
this.Controls.Add(this.label12);
|
|
this.Controls.Add(this.btnTargetConnTest);
|
|
this.Controls.Add(this.txtTargetPWD);
|
|
this.Controls.Add(this.label6);
|
|
this.Controls.Add(this.btnSourceConnTest);
|
|
this.Controls.Add(this.txtSourcePWD);
|
|
this.Controls.Add(this.label5);
|
|
this.Controls.Add(this.txtTargetID);
|
|
this.Controls.Add(this.label7);
|
|
this.Controls.Add(this.txtTargetDBName);
|
|
this.Controls.Add(this.label8);
|
|
this.Controls.Add(this.txtTargetIP);
|
|
this.Controls.Add(this.label9);
|
|
this.Controls.Add(this.cbTargetClass);
|
|
this.Controls.Add(this.label10);
|
|
this.Controls.Add(this.txtSourceID);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.txtSourceDBName);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.txtSourceIP);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.cbSourceClass);
|
|
this.Controls.Add(this.label1);
|
|
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Margin = new System.Windows.Forms.Padding(5);
|
|
this.Name = "Form1";
|
|
this.Text = "資料匯出程式";
|
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvExportList)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.dgvColumnMapping)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtTargetID;
|
|
private System.Windows.Forms.Label label7;
|
|
private System.Windows.Forms.TextBox txtTargetDBName;
|
|
private System.Windows.Forms.Label label8;
|
|
private System.Windows.Forms.TextBox txtTargetIP;
|
|
private System.Windows.Forms.Label label9;
|
|
private System.Windows.Forms.ComboBox cbTargetClass;
|
|
private System.Windows.Forms.Label label10;
|
|
private System.Windows.Forms.TextBox txtSourceID;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.TextBox txtSourceDBName;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox txtSourceIP;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ComboBox cbSourceClass;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnExport;
|
|
private System.Windows.Forms.Label label12;
|
|
private System.Windows.Forms.Button btnTargetConnTest;
|
|
private System.Windows.Forms.TextBox txtTargetPWD;
|
|
private System.Windows.Forms.Label label6;
|
|
private System.Windows.Forms.Button btnSourceConnTest;
|
|
private System.Windows.Forms.TextBox txtSourcePWD;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.DataGridView dgvExportList;
|
|
private System.Windows.Forms.Label label11;
|
|
private System.Windows.Forms.DataGridView dgvColumnMapping;
|
|
private System.Windows.Forms.TextBox txtWhere;
|
|
private System.Windows.Forms.Label label13;
|
|
private System.Windows.Forms.Label label14;
|
|
private System.Windows.Forms.ComboBox cbTargetTable;
|
|
private System.Windows.Forms.Button btnMapping;
|
|
private System.Windows.Forms.SaveFileDialog sfPath;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn clExpColumn;
|
|
private System.Windows.Forms.DataGridViewButtonColumn clClean;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clSourceColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clType;
|
|
private System.Windows.Forms.DataGridViewComboBoxColumn clTargetColumn;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn clExport;
|
|
private System.Windows.Forms.DataGridViewButtonColumn clCancel;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clSourceTable;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clTargetTable;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn clTableDel;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clMaxRecord;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clWhere;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn clMappingData;
|
|
}
|
|
}
|
|
|