This commit is contained in:
SchreiberM
2015-10-19 16:28:19 +02:00
parent b228bae28a
commit 12e13b0b6f
22 changed files with 2154 additions and 754 deletions

View File

@@ -32,8 +32,8 @@ Partial Class frmSQLEditor
Me.Button1 = New System.Windows.Forms.Button()
Me.txtValue = New System.Windows.Forms.TextBox()
Me.DD_DMSDataSet = New DD_Record_Organiser.DD_DMSDataSet()
Me.TBPMO_CONNECTIONBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.TBPMO_CONNECTIONTableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBPMO_CONNECTIONTableAdapter()
Me.TBDD_CONNECTIONBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.TBDD_CONNECTIONTableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_CONNECTIONTableAdapter()
Me.TableAdapterManager = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager()
Me.cmbConnection = New System.Windows.Forms.ComboBox()
Me.Button2 = New System.Windows.Forms.Button()
@@ -63,7 +63,7 @@ Partial Class frmSQLEditor
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
CType(Me.DD_DMSDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBPMO_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.dgvPlaceholders, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.dgvResult, System.ComponentModel.ISupportInitialize).BeginInit()
Me.GroupBox1.SuspendLayout()
@@ -101,14 +101,14 @@ Partial Class frmSQLEditor
Me.DD_DMSDataSet.DataSetName = "DD_DMSDataSet"
Me.DD_DMSDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
'
'TBPMO_CONNECTIONBindingSource
'TBDD_CONNECTIONBindingSource
'
Me.TBPMO_CONNECTIONBindingSource.DataMember = "TBPMO_CONNECTION"
Me.TBPMO_CONNECTIONBindingSource.DataSource = Me.DD_DMSDataSet
Me.TBDD_CONNECTIONBindingSource.DataMember = "TBDD_CONNECTION"
Me.TBDD_CONNECTIONBindingSource.DataSource = Me.DD_DMSDataSet
'
'TBPMO_CONNECTIONTableAdapter
'TBDD_CONNECTIONTableAdapter
'
Me.TBPMO_CONNECTIONTableAdapter.ClearBeforeFill = True
Me.TBDD_CONNECTIONTableAdapter.ClearBeforeFill = True
'
'TableAdapterManager
'
@@ -120,7 +120,7 @@ Partial Class frmSQLEditor
Me.TableAdapterManager.TBDD_INDEX_AUTOMTableAdapter = Nothing
Me.TableAdapterManager.TBDD_USER_GROUPSTableAdapter = Nothing
Me.TableAdapterManager.TBDD_USERTableAdapter = Nothing
Me.TableAdapterManager.TBPMO_CONNECTIONTableAdapter = Me.TBPMO_CONNECTIONTableAdapter
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Me.TBDD_CONNECTIONTableAdapter
Me.TableAdapterManager.TBPMO_FILES_USERTableAdapter = Nothing
Me.TableAdapterManager.TBPMO_FOLLOW_UP_EMAILTableAdapter = Nothing
Me.TableAdapterManager.TBPMO_FOLLUPEMAIL_USERTableAdapter = Nothing
@@ -141,7 +141,7 @@ Partial Class frmSQLEditor
'
'cmbConnection
'
Me.cmbConnection.DataSource = Me.TBPMO_CONNECTIONBindingSource
Me.cmbConnection.DataSource = Me.TBDD_CONNECTIONBindingSource
Me.cmbConnection.DisplayMember = "DESCRIPTION"
Me.cmbConnection.FormattingEnabled = True
Me.cmbConnection.Location = New System.Drawing.Point(6, 19)
@@ -477,7 +477,7 @@ Partial Class frmSQLEditor
Me.Name = "frmSQLEditor"
Me.Text = "SQL-Editor"
CType(Me.DD_DMSDataSet, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBPMO_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.dgvPlaceholders, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.dgvResult, System.ComponentModel.ISupportInitialize).EndInit()
Me.GroupBox1.ResumeLayout(False)
@@ -493,8 +493,8 @@ Partial Class frmSQLEditor
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents txtValue As System.Windows.Forms.TextBox
Friend WithEvents DD_DMSDataSet As DD_Record_Organiser.DD_DMSDataSet
Friend WithEvents TBPMO_CONNECTIONBindingSource As System.Windows.Forms.BindingSource
Friend WithEvents TBPMO_CONNECTIONTableAdapter As DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBPMO_CONNECTIONTableAdapter
Friend WithEvents TBDD_CONNECTIONBindingSource As System.Windows.Forms.BindingSource
Friend WithEvents TBDD_CONNECTIONTableAdapter As DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBDD_CONNECTIONTableAdapter
Friend WithEvents TableAdapterManager As DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager
Friend WithEvents cmbConnection As System.Windows.Forms.ComboBox
Friend WithEvents Button2 As System.Windows.Forms.Button