Merge branch 'master' of http://scmadmin@172.24.11.74:90/scm/git/RecordOrganizer
This commit is contained in:
commit
23ab3782a2
@ -11,8 +11,11 @@ Public Class ClassWindreamDocGrid
|
||||
Public Shared RESULT_INWORK As Boolean
|
||||
Public Shared RESULT_DOC_ID As Integer
|
||||
Public Shared RESULT_DISPLAYNAME As String
|
||||
Public Shared RESULT_CONFIG_IDS As Hashtable
|
||||
|
||||
Private Shared _dropdownValueChangedHandler As EventHandler
|
||||
Private Shared _datepickerValueChangedHandler As EventHandler
|
||||
Private Shared _textValueChangedHandler As EventHandler
|
||||
|
||||
Public Shared Sub GetDocItems(gridView As GridView)
|
||||
Try
|
||||
@ -47,108 +50,54 @@ Public Class ClassWindreamDocGrid
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Shared Sub FormatColumns(gridView As GridView, DT_RESULT As DataTable, DT_WINDREAM_RESULTLIST As DataTable, DT_DOCRESULT_DROPDOWN_ITEMS As DataTable, DropdownValueChangedHandler As EventHandler)
|
||||
Dim dateColumns As New List(Of String)
|
||||
Dim checkboxColumns As New List(Of String)
|
||||
Dim dropdownTable As New DataTable()
|
||||
dropdownTable.TableName = "DROPDOWN_TABLE"
|
||||
dropdownTable.Columns.Add("ID", GetType(Integer))
|
||||
dropdownTable.Columns.Add("HEADER_CAPTION", GetType(String))
|
||||
dropdownTable.Columns.Add("COLUMN_VIEW", GetType(String))
|
||||
Public Shared Sub FillColumns(gridView As GridView, DT_RESULT As DataTable, DT_WINDREAM_RESULTLIST As DataTable, DT_DOCRESULT_DROPDOWN_ITEMS As DataTable, DropdownValueChangedHandler As EventHandler, DatepickerValueChangedHandler As EventHandler, TextValueChangedHandler As EventHandler)
|
||||
' Handler speichern
|
||||
_dropdownValueChangedHandler = DropdownValueChangedHandler
|
||||
_datepickerValueChangedHandler = DatepickerValueChangedHandler
|
||||
_textValueChangedHandler = TextValueChangedHandler
|
||||
|
||||
' Tabelle vor dem verändern klonen
|
||||
Dim clonedTable As DataTable = DT_RESULT.Clone()
|
||||
|
||||
RESULT_CONFIG_IDS = New Hashtable()
|
||||
|
||||
' Datentypen der DataTable setzen
|
||||
For Each row As DataRow In DT_WINDREAM_RESULTLIST.Rows
|
||||
Dim guid As Integer = row.Item("GUID")
|
||||
Dim width As Integer = row.Item("WIDTH")
|
||||
Dim typeID As Integer = row.Item("TYPE_ID")
|
||||
Dim isVisible As Boolean = row.Item("VISIBLE")
|
||||
Dim isEditable As Boolean = row.Item("EDITABLE")
|
||||
Dim columnTitle As String = row.Item("HEADER_CAPTION")
|
||||
Dim COLUMN_VIEW As String = row.Item("COLUMN_VIEW")
|
||||
|
||||
' Liste aller Datumsspalten erstellen
|
||||
RESULT_CONFIG_IDS.Add(columnTitle, guid)
|
||||
|
||||
' Checkbox Spalte auf Boolean setzen
|
||||
If typeID = 2 And isVisible Then
|
||||
Dim checkboxColumn As DataColumn = clonedTable.Columns(columnTitle)
|
||||
|
||||
If Not IsNothing(checkboxColumn) Then
|
||||
checkboxColumn.DataType = GetType(Boolean)
|
||||
End If
|
||||
End If
|
||||
|
||||
' Datepicker Spalte auf Date setzen
|
||||
If typeID = 3 And isVisible = True Then
|
||||
dateColumns.Add(columnTitle)
|
||||
End If
|
||||
Dim datepickerColumn As DataColumn = clonedTable.Columns(columnTitle)
|
||||
|
||||
' Liste aller Checkboxspalten erstellen
|
||||
If typeID = 2 And isVisible = True Then
|
||||
checkboxColumns.Add(columnTitle)
|
||||
End If
|
||||
|
||||
|
||||
If typeID = 4 And isVisible = True Then
|
||||
Dim dropdownRow As DataRow = dropdownTable.NewRow()
|
||||
dropdownRow.Item("ID") = guid
|
||||
dropdownRow.Item("HEADER_CAPTION") = columnTitle
|
||||
dropdownRow.Item("COLUMN_VIEW") = COLUMN_VIEW
|
||||
dropdownTable.Rows.Add(dropdownRow)
|
||||
dropdownTable.AcceptChanges()
|
||||
End If
|
||||
Next
|
||||
CURRENT_DOC_DROPDOWN = dropdownTable
|
||||
Dim clonedTable As DataTable = DT_RESULT.Clone()
|
||||
' In DataTable die DateSpalten mit dem Type Date belegen
|
||||
For Each dateColumnTitle As String In dateColumns
|
||||
Dim dateColumn As DataColumn = clonedTable.Columns(dateColumnTitle)
|
||||
If Not IsNothing(dateColumn) Then
|
||||
dateColumn.DataType = GetType(Date)
|
||||
End If
|
||||
Next
|
||||
' In DataTable die CheckboxSpalten mit dem Typ Boolean belegen
|
||||
For Each checkboxColunmTitle As String In checkboxColumns
|
||||
Dim checkboxColumn As DataColumn = clonedTable.Columns(checkboxColunmTitle)
|
||||
If Not IsNothing(checkboxColumn) Then
|
||||
checkboxColumn.DataType = GetType(Boolean)
|
||||
End If
|
||||
Next
|
||||
|
||||
Try
|
||||
clonedTable.Load(DT_RESULT.CreateDataReader())
|
||||
DT_RESULT = clonedTable
|
||||
Catch ex As Exception
|
||||
ClassLogger.Add(">> Attention: Could not load converted datatable DocSearch: " & ex.Message, False)
|
||||
End Try
|
||||
|
||||
gridView.GridControl.DataSource = DT_RESULT
|
||||
|
||||
' Breite der Spalten anpassen
|
||||
For Each row As DataRow In DT_WINDREAM_RESULTLIST.Rows
|
||||
Dim Width = row.Item("WIDTH")
|
||||
If Not IsNothing(Width) And Not IsDBNull(Width) Then
|
||||
Dim column = DirectCast(gridView.Columns.Item(row.Item("HEADER_CAPTION")), DevExpress.XtraGrid.Columns.GridColumn)
|
||||
If Not IsNothing(column) Then
|
||||
column.Width = Width
|
||||
If Not IsNothing(datepickerColumn) Then
|
||||
'datepickerColumn.DataType = GetType(DateTime)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
|
||||
' Dropdown/Combobox Editor für passende Spalten anwenden
|
||||
For Each dropdownRow As DataRow In dropdownTable.Rows
|
||||
Dim dropdown As New RepositoryItemComboBox()
|
||||
Dim columnTitle As String = dropdownRow.Item("HEADER_CAPTION")
|
||||
Dim guid As Integer = dropdownRow.Item("ID")
|
||||
|
||||
Dim expression As String = String.Format("CONFIG_ID = {0}", guid.ToString())
|
||||
Dim matchingRows() As DataRow = DT_DOCRESULT_DROPDOWN_ITEMS.Select(expression, "SEQUENCE")
|
||||
|
||||
' Dropdown füllen
|
||||
For Each matchingRow As DataRow In matchingRows
|
||||
Dim item As New WindreamDocGridComboboxItem()
|
||||
item.ConfigID = matchingRow.Item("CONFIG_ID")
|
||||
item.Value = matchingRow.Item("VALUE")
|
||||
|
||||
dropdown.Items.Add(item)
|
||||
Next
|
||||
|
||||
gridView.GridControl.RepositoryItems.Add(dropdown)
|
||||
|
||||
If Not IsNothing(gridView.Columns(columnTitle)) Then
|
||||
gridView.Columns(columnTitle).ColumnEdit = dropdown
|
||||
End If
|
||||
AddHandler dropdown.SelectedValueChanged, _dropdownValueChangedHandler
|
||||
Next
|
||||
|
||||
' Eigenschaften der Spalten anpassen
|
||||
' Tabelle zurückspielen und zuweisen
|
||||
Try
|
||||
clonedTable.Load(DT_RESULT.CreateDataReader())
|
||||
DT_RESULT = clonedTable
|
||||
gridView.GridControl.DataSource = DT_RESULT
|
||||
Catch ex As Exception
|
||||
ClassLogger.Add(">> Attention: Could not load converted datatable DocSearch: " & ex.Message, False)
|
||||
End Try
|
||||
|
||||
gridView.Columns.Item("ICON").MaxWidth = 24
|
||||
gridView.Columns.Item("ICON").MinWidth = 24
|
||||
@ -156,8 +105,6 @@ Public Class ClassWindreamDocGrid
|
||||
gridView.Columns.Item("OBJECTTYPE").Visible = False
|
||||
gridView.Columns.Item("DocID").Visible = False
|
||||
|
||||
' Changed & Created Spalten anpassen
|
||||
|
||||
Dim created, changed As String
|
||||
If USER_LANGUAGE <> "de-DE" Then
|
||||
changed = "Changed"
|
||||
@ -179,30 +126,104 @@ Public Class ClassWindreamDocGrid
|
||||
changedColumn.DisplayFormat.FormatString = CURRENT_DATE_FORMAT & " HH:MM:ss"
|
||||
End If
|
||||
|
||||
' Für die Dropdown Spalte Änderungen zulassen
|
||||
' Alle Spalten aus ReadOnly setzen, danach werden alle passenden auf nicht ReadOnly gesetzt
|
||||
For Each column As GridColumn In gridView.Columns
|
||||
Dim _AllowEdit As Boolean = False
|
||||
For Each dropdownrow As DataRow In dropdownTable.Rows
|
||||
Dim columnTitle = dropdownrow.Item("COLUMN_VIEW")
|
||||
If columnTitle = column.FieldName Then
|
||||
_AllowEdit = True
|
||||
Exit For
|
||||
End If
|
||||
Next
|
||||
column.OptionsColumn.AllowEdit = _AllowEdit
|
||||
column.OptionsColumn.AllowEdit = False
|
||||
Next
|
||||
|
||||
Dim CheckBoxEditorForDisplay = New RepositoryItemCheckEdit()
|
||||
CheckBoxEditorForDisplay.ValueChecked = "True"
|
||||
CheckBoxEditorForDisplay.ValueUnchecked = "False"
|
||||
'Alle Checkbox Spalten durchgehen und CheckBoxEditor zuweisen
|
||||
For Each columnTitle As String In checkboxColumns
|
||||
gridView.GridControl.RepositoryItems.Add(CheckBoxEditorForDisplay)
|
||||
If Not IsNothing(gridView.Columns(columnTitle)) Then
|
||||
gridView.Columns(columnTitle).ColumnEdit = CheckBoxEditorForDisplay
|
||||
For Each row As DataRow In DT_WINDREAM_RESULTLIST.Rows
|
||||
Dim guid As Integer = row.Item("GUID")
|
||||
Dim width As Integer = row.Item("WIDTH")
|
||||
Dim typeID As Integer = row.Item("TYPE_ID")
|
||||
Dim isVisible As Boolean = row.Item("VISIBLE")
|
||||
Dim isEditable As Boolean = row.Item("EDITABLE")
|
||||
Dim columnTitle As String = row.Item("HEADER_CAPTION")
|
||||
|
||||
' Breite der Spalten setzen
|
||||
If Not IsNothing(width) And Not IsDBNull(width) Then
|
||||
Dim column = DirectCast(gridView.Columns.Item(row.Item("HEADER_CAPTION")), DevExpress.XtraGrid.Columns.GridColumn)
|
||||
If Not IsNothing(column) Then
|
||||
column.Width = width
|
||||
End If
|
||||
End If
|
||||
|
||||
If typeID = 1 And isVisible And isEditable Then
|
||||
Dim textedit As New RepositoryItemTextEdit()
|
||||
Dim value As String = ClassDatabase.Execute_Scalar("SELECT VALUE FROM TBPMO_DOC_VALUES WHERE CONFIG_ID = " & guid)
|
||||
Dim col As GridColumn = gridView.Columns(columnTitle)
|
||||
|
||||
gridView.GridControl.RepositoryItems.Add(textedit)
|
||||
|
||||
'Editor zuweisen
|
||||
If Not IsNothing(col) Then
|
||||
col.ColumnEdit = textedit
|
||||
col.OptionsColumn.AllowEdit = True
|
||||
End If
|
||||
|
||||
' Handler zuweisen
|
||||
AddHandler textedit.Leave, _textValueChangedHandler
|
||||
End If
|
||||
|
||||
If typeID = 2 And isVisible And isEditable Then
|
||||
Dim checkEdit As New RepositoryItemCheckEdit()
|
||||
checkEdit.ValueChecked = True
|
||||
checkEdit.ValueUnchecked = False
|
||||
Dim value As String = ClassDatabase.Execute_Scalar("SELECT VALUE FROM TBPMO_DOC_VALUES WHERE CONFIG_ID = " & guid)
|
||||
Dim col As GridColumn = gridView.Columns(columnTitle)
|
||||
|
||||
gridView.GridControl.RepositoryItems.Add(checkEdit)
|
||||
|
||||
If Not IsNothing(col) Then
|
||||
col.OptionsColumn.AllowEdit = True
|
||||
col.ColumnEdit = checkEdit
|
||||
End If
|
||||
End If
|
||||
|
||||
If typeID = 3 And isVisible And isEditable Then
|
||||
Dim dateedit As New RepositoryItemDateEdit()
|
||||
Dim value As String = ClassDatabase.Execute_Scalar("SELECT VALUE FROM TBPMO_DOC_VALUES WHERE CONFIG_ID = " & guid)
|
||||
Dim col As GridColumn = gridView.Columns(columnTitle)
|
||||
|
||||
gridView.GridControl.RepositoryItems.Add(dateedit)
|
||||
|
||||
If Not IsNothing(col) Then
|
||||
col.ColumnEdit = dateedit
|
||||
col.OptionsColumn.AllowEdit = True
|
||||
col.DisplayFormat.FormatType = FormatType.DateTime
|
||||
col.DisplayFormat.FormatString = CURRENT_DATE_FORMAT & " HH:MM:ss"
|
||||
End If
|
||||
|
||||
AddHandler dateedit.EditValueChanged, _datepickerValueChangedHandler
|
||||
End If
|
||||
|
||||
If typeID = 4 And isVisible And isEditable Then
|
||||
Dim dropdown As New RepositoryItemComboBox()
|
||||
|
||||
' Dropdown Items finden
|
||||
Dim matchingRows() As DataRow = DT_DOCRESULT_DROPDOWN_ITEMS.Select(String.Format("CONFIG_ID = {0}", guid), "SEQUENCE")
|
||||
|
||||
' Dropdown füllen
|
||||
For Each matchingRow As DataRow In matchingRows
|
||||
Dim item As New WindreamDocGridComboboxItem()
|
||||
item.ConfigID = matchingRow.Item("CONFIG_ID")
|
||||
item.Value = matchingRow.Item("VALUE")
|
||||
|
||||
dropdown.Items.Add(item)
|
||||
Next
|
||||
|
||||
' Dropdown als Editor hinzufügen
|
||||
gridView.GridControl.RepositoryItems.Add(dropdown)
|
||||
|
||||
Dim col As GridColumn = gridView.Columns(columnTitle)
|
||||
|
||||
'Editor zuweisen
|
||||
If Not IsNothing(col) Then
|
||||
col.ColumnEdit = dropdown
|
||||
End If
|
||||
' Handler zuweisen
|
||||
AddHandler dropdown.SelectedValueChanged, _dropdownValueChangedHandler
|
||||
End If
|
||||
Next
|
||||
|
||||
End Sub
|
||||
|
||||
Public Class WindreamDocGridComboboxItem
|
||||
|
||||
@ -314,12 +314,6 @@
|
||||
<Compile Include="frmStructureNodeConfig.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frmWD_ResultlistConfig.Designer.vb">
|
||||
<DependentUpon>frmWD_ResultlistConfig.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="frmWD_ResultlistConfig.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frmWD_Import_Doc_Record.Designer.vb">
|
||||
<DependentUpon>frmWD_Import_Doc_Record.vb</DependentUpon>
|
||||
</Compile>
|
||||
@ -339,6 +333,12 @@
|
||||
<Compile Include="frmWD_Link_to_Record.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frmWD_Resultlist_Config.Designer.vb">
|
||||
<DependentUpon>frmWD_Resultlist_Config.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="frmWD_Resultlist_Config.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Strings\ControlProperties.en.Designer.vb">
|
||||
<DependentUpon>ControlProperties.en.resx</DependentUpon>
|
||||
<AutoGen>True</AutoGen>
|
||||
@ -700,9 +700,6 @@
|
||||
<EmbeddedResource Include="frmStructureNodeConfig.resx">
|
||||
<DependentUpon>frmStructureNodeConfig.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmWD_ResultlistConfig.resx">
|
||||
<DependentUpon>frmWD_ResultlistConfig.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmWD_Import_Doc_Record.resx">
|
||||
<DependentUpon>frmWD_Import_Doc_Record.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
@ -715,6 +712,9 @@
|
||||
<EmbeddedResource Include="frmWD_Link_to_Record.resx">
|
||||
<DependentUpon>frmWD_Link_to_Record.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frmWD_Resultlist_Config.resx">
|
||||
<DependentUpon>frmWD_Resultlist_Config.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="My Project\licenses.licx" />
|
||||
<EmbeddedResource Include="Strings\ControlProperties.en.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
@ -1006,7 +1006,7 @@
|
||||
<None Include="DD_ECMAdmin.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSDataSetGenerator</Generator>
|
||||
<LastGenOutput>DD_ECMAdmin1.Designer.vb</LastGenOutput>
|
||||
<LastGenOutput>DD_ECMAdmin.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="DD_ECMAdmin.xss">
|
||||
<DependentUpon>DD_ECMAdmin.xsd</DependentUpon>
|
||||
@ -1016,6 +1016,7 @@
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\DataSources\frmWD_Resultlist_Config.ResultListTypeSource.datasource" />
|
||||
<None Include="My Project\Settings.Settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
|
||||
517
app/DD-Record-Organiser/DD_ECMAdmin.Designer.vb
generated
517
app/DD-Record-Organiser/DD_ECMAdmin.Designer.vb
generated
@ -39,7 +39,7 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
Private tableTBPMO_SAP_FUBA As TBPMO_SAP_FUBADataTable
|
||||
|
||||
Private tableTBPMO_RESULTLIST_CONFIG As TBPMO_RESULTLIST_CONFIGDataTable
|
||||
Private tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG As TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable
|
||||
|
||||
Private tableDT_VORSCHAU As DT_VORSCHAUDataTable
|
||||
|
||||
@ -101,8 +101,8 @@ Partial Public Class DD_ECMAdmin
|
||||
If (Not (ds.Tables("TBPMO_SAP_FUBA")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_SAP_FUBADataTable(ds.Tables("TBPMO_SAP_FUBA")))
|
||||
End If
|
||||
If (Not (ds.Tables("TBPMO_RESULTLIST_CONFIG")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_RESULTLIST_CONFIGDataTable(ds.Tables("TBPMO_RESULTLIST_CONFIG")))
|
||||
If (Not (ds.Tables("TBPMO_DOCSEARCH_RESULTLIST_CONFIG")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable(ds.Tables("TBPMO_DOCSEARCH_RESULTLIST_CONFIG")))
|
||||
End If
|
||||
If (Not (ds.Tables("DT_VORSCHAU")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New DT_VORSCHAUDataTable(ds.Tables("DT_VORSCHAU")))
|
||||
@ -207,9 +207,9 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Browsable(false), _
|
||||
Global.System.ComponentModel.DesignerSerializationVisibility(Global.System.ComponentModel.DesignerSerializationVisibility.Content)> _
|
||||
Public ReadOnly Property TBPMO_RESULTLIST_CONFIG() As TBPMO_RESULTLIST_CONFIGDataTable
|
||||
Public ReadOnly Property TBPMO_DOCSEARCH_RESULTLIST_CONFIG() As TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable
|
||||
Get
|
||||
Return Me.tableTBPMO_RESULTLIST_CONFIG
|
||||
Return Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@ -341,8 +341,8 @@ Partial Public Class DD_ECMAdmin
|
||||
If (Not (ds.Tables("TBPMO_SAP_FUBA")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_SAP_FUBADataTable(ds.Tables("TBPMO_SAP_FUBA")))
|
||||
End If
|
||||
If (Not (ds.Tables("TBPMO_RESULTLIST_CONFIG")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_RESULTLIST_CONFIGDataTable(ds.Tables("TBPMO_RESULTLIST_CONFIG")))
|
||||
If (Not (ds.Tables("TBPMO_DOCSEARCH_RESULTLIST_CONFIG")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable(ds.Tables("TBPMO_DOCSEARCH_RESULTLIST_CONFIG")))
|
||||
End If
|
||||
If (Not (ds.Tables("DT_VORSCHAU")) Is Nothing) Then
|
||||
MyBase.Tables.Add(New DT_VORSCHAUDataTable(ds.Tables("DT_VORSCHAU")))
|
||||
@ -430,10 +430,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Me.tableTBPMO_SAP_FUBA.InitVars
|
||||
End If
|
||||
End If
|
||||
Me.tableTBPMO_RESULTLIST_CONFIG = CType(MyBase.Tables("TBPMO_RESULTLIST_CONFIG"),TBPMO_RESULTLIST_CONFIGDataTable)
|
||||
Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG = CType(MyBase.Tables("TBPMO_DOCSEARCH_RESULTLIST_CONFIG"),TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable)
|
||||
If (initTable = true) Then
|
||||
If (Not (Me.tableTBPMO_RESULTLIST_CONFIG) Is Nothing) Then
|
||||
Me.tableTBPMO_RESULTLIST_CONFIG.InitVars
|
||||
If (Not (Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG) Is Nothing) Then
|
||||
Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.InitVars
|
||||
End If
|
||||
End If
|
||||
Me.tableDT_VORSCHAU = CType(MyBase.Tables("DT_VORSCHAU"),DT_VORSCHAUDataTable)
|
||||
@ -485,8 +485,8 @@ Partial Public Class DD_ECMAdmin
|
||||
MyBase.Tables.Add(Me.tableTBWH_USER_GROUPS)
|
||||
Me.tableTBPMO_SAP_FUBA = New TBPMO_SAP_FUBADataTable()
|
||||
MyBase.Tables.Add(Me.tableTBPMO_SAP_FUBA)
|
||||
Me.tableTBPMO_RESULTLIST_CONFIG = New TBPMO_RESULTLIST_CONFIGDataTable()
|
||||
MyBase.Tables.Add(Me.tableTBPMO_RESULTLIST_CONFIG)
|
||||
Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG = New TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable()
|
||||
MyBase.Tables.Add(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG)
|
||||
Me.tableDT_VORSCHAU = New DT_VORSCHAUDataTable()
|
||||
MyBase.Tables.Add(Me.tableDT_VORSCHAU)
|
||||
Me.tableTBAD_Users = New TBAD_UsersDataTable()
|
||||
@ -543,7 +543,7 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Private Function ShouldSerializeTBPMO_RESULTLIST_CONFIG() As Boolean
|
||||
Private Function ShouldSerializeTBPMO_DOCSEARCH_RESULTLIST_CONFIG() As Boolean
|
||||
Return false
|
||||
End Function
|
||||
|
||||
@ -651,7 +651,7 @@ Partial Public Class DD_ECMAdmin
|
||||
Public Delegate Sub TBPMO_SAP_FUBARowChangeEventHandler(ByVal sender As Object, ByVal e As TBPMO_SAP_FUBARowChangeEvent)
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Delegate Sub TBPMO_RESULTLIST_CONFIGRowChangeEventHandler(ByVal sender As Object, ByVal e As TBPMO_RESULTLIST_CONFIGRowChangeEvent)
|
||||
Public Delegate Sub TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler(ByVal sender As Object, ByVal e As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent)
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Delegate Sub DT_VORSCHAURowChangeEventHandler(ByVal sender As Object, ByVal e As DT_VORSCHAURowChangeEvent)
|
||||
@ -3563,12 +3563,12 @@ Partial Public Class DD_ECMAdmin
|
||||
'''</summary>
|
||||
<Global.System.Serializable(), _
|
||||
Global.System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")> _
|
||||
Partial Public Class TBPMO_RESULTLIST_CONFIGDataTable
|
||||
Inherits Global.System.Data.TypedTableBase(Of TBPMO_RESULTLIST_CONFIGRow)
|
||||
Partial Public Class TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable
|
||||
Inherits Global.System.Data.TypedTableBase(Of TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
|
||||
Private columnGUID As Global.System.Data.DataColumn
|
||||
|
||||
Private columnNAME As Global.System.Data.DataColumn
|
||||
Private columnENTITY_ID As Global.System.Data.DataColumn
|
||||
|
||||
Private columnLANGUAGE As Global.System.Data.DataColumn
|
||||
|
||||
@ -3594,7 +3594,7 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub New()
|
||||
MyBase.New
|
||||
Me.TableName = "TBPMO_RESULTLIST_CONFIG"
|
||||
Me.TableName = "TBPMO_DOCSEARCH_RESULTLIST_CONFIG"
|
||||
Me.BeginInit
|
||||
Me.InitClass
|
||||
Me.EndInit
|
||||
@ -3635,9 +3635,9 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public ReadOnly Property NAMEColumn() As Global.System.Data.DataColumn
|
||||
Public ReadOnly Property ENTITY_IDColumn() As Global.System.Data.DataColumn
|
||||
Get
|
||||
Return Me.columnNAME
|
||||
Return Me.columnENTITY_ID
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@ -3732,50 +3732,50 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Default ReadOnly Property Item(ByVal index As Integer) As TBPMO_RESULTLIST_CONFIGRow
|
||||
Public Default ReadOnly Property Item(ByVal index As Integer) As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Get
|
||||
Return CType(Me.Rows(index),TBPMO_RESULTLIST_CONFIGRow)
|
||||
Return CType(Me.Rows(index),TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Event TBPMO_RESULTLIST_CONFIGRowChanging As TBPMO_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
Public Event TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanging As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Event TBPMO_RESULTLIST_CONFIGRowChanged As TBPMO_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
Public Event TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanged As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Event TBPMO_RESULTLIST_CONFIGRowDeleting As TBPMO_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
Public Event TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleting As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Event TBPMO_RESULTLIST_CONFIGRowDeleted As TBPMO_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
Public Event TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleted As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Overloads Sub AddTBPMO_RESULTLIST_CONFIGRow(ByVal row As TBPMO_RESULTLIST_CONFIGRow)
|
||||
Public Overloads Sub AddTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow(ByVal row As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
Me.Rows.Add(row)
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Overloads Function AddTBPMO_RESULTLIST_CONFIGRow(ByVal NAME As String, ByVal LANGUAGE As String, ByVal COLUMN_VIEW As String, ByVal HEADER_CAPTION As String, ByVal WIDTH As Integer, ByVal TYPE_ID As Byte, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Date, ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Date, ByVal VISIBLE As Boolean) As TBPMO_RESULTLIST_CONFIGRow
|
||||
Dim rowTBPMO_RESULTLIST_CONFIGRow As TBPMO_RESULTLIST_CONFIGRow = CType(Me.NewRow,TBPMO_RESULTLIST_CONFIGRow)
|
||||
Dim columnValuesArray() As Object = New Object() {Nothing, NAME, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE}
|
||||
rowTBPMO_RESULTLIST_CONFIGRow.ItemArray = columnValuesArray
|
||||
Me.Rows.Add(rowTBPMO_RESULTLIST_CONFIGRow)
|
||||
Return rowTBPMO_RESULTLIST_CONFIGRow
|
||||
Public Overloads Function AddTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow(ByVal ENTITY_ID As Integer, ByVal LANGUAGE As String, ByVal COLUMN_VIEW As String, ByVal HEADER_CAPTION As String, ByVal WIDTH As Integer, ByVal TYPE_ID As Byte, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Date, ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Date, ByVal VISIBLE As Boolean) As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Dim rowTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow = CType(Me.NewRow,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
Dim columnValuesArray() As Object = New Object() {Nothing, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE}
|
||||
rowTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow.ItemArray = columnValuesArray
|
||||
Me.Rows.Add(rowTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
Return rowTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Function FindByGUID(ByVal GUID As Integer) As TBPMO_RESULTLIST_CONFIGRow
|
||||
Return CType(Me.Rows.Find(New Object() {GUID}),TBPMO_RESULTLIST_CONFIGRow)
|
||||
Public Function FindByGUID(ByVal GUID As Integer) As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Return CType(Me.Rows.Find(New Object() {GUID}),TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Overrides Function Clone() As Global.System.Data.DataTable
|
||||
Dim cln As TBPMO_RESULTLIST_CONFIGDataTable = CType(MyBase.Clone,TBPMO_RESULTLIST_CONFIGDataTable)
|
||||
Dim cln As TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable = CType(MyBase.Clone,TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable)
|
||||
cln.InitVars
|
||||
Return cln
|
||||
End Function
|
||||
@ -3783,14 +3783,14 @@ Partial Public Class DD_ECMAdmin
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Function CreateInstance() As Global.System.Data.DataTable
|
||||
Return New TBPMO_RESULTLIST_CONFIGDataTable()
|
||||
Return New TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable()
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Friend Sub InitVars()
|
||||
Me.columnGUID = MyBase.Columns("GUID")
|
||||
Me.columnNAME = MyBase.Columns("NAME")
|
||||
Me.columnENTITY_ID = MyBase.Columns("ENTITY_ID")
|
||||
Me.columnLANGUAGE = MyBase.Columns("LANGUAGE")
|
||||
Me.columnCOLUMN_VIEW = MyBase.Columns("COLUMN_VIEW")
|
||||
Me.columnHEADER_CAPTION = MyBase.Columns("HEADER_CAPTION")
|
||||
@ -3808,8 +3808,8 @@ Partial Public Class DD_ECMAdmin
|
||||
Private Sub InitClass()
|
||||
Me.columnGUID = New Global.System.Data.DataColumn("GUID", GetType(Integer), Nothing, Global.System.Data.MappingType.Element)
|
||||
MyBase.Columns.Add(Me.columnGUID)
|
||||
Me.columnNAME = New Global.System.Data.DataColumn("NAME", GetType(String), Nothing, Global.System.Data.MappingType.Element)
|
||||
MyBase.Columns.Add(Me.columnNAME)
|
||||
Me.columnENTITY_ID = New Global.System.Data.DataColumn("ENTITY_ID", GetType(Integer), Nothing, Global.System.Data.MappingType.Element)
|
||||
MyBase.Columns.Add(Me.columnENTITY_ID)
|
||||
Me.columnLANGUAGE = New Global.System.Data.DataColumn("LANGUAGE", GetType(String), Nothing, Global.System.Data.MappingType.Element)
|
||||
MyBase.Columns.Add(Me.columnLANGUAGE)
|
||||
Me.columnCOLUMN_VIEW = New Global.System.Data.DataColumn("COLUMN_VIEW", GetType(String), Nothing, Global.System.Data.MappingType.Element)
|
||||
@ -3837,8 +3837,7 @@ Partial Public Class DD_ECMAdmin
|
||||
Me.columnGUID.AllowDBNull = false
|
||||
Me.columnGUID.ReadOnly = true
|
||||
Me.columnGUID.Unique = true
|
||||
Me.columnNAME.AllowDBNull = false
|
||||
Me.columnNAME.MaxLength = 100
|
||||
Me.columnENTITY_ID.AllowDBNull = false
|
||||
Me.columnLANGUAGE.AllowDBNull = false
|
||||
Me.columnLANGUAGE.MaxLength = 5
|
||||
Me.columnCOLUMN_VIEW.AllowDBNull = false
|
||||
@ -3855,28 +3854,28 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Function NewTBPMO_RESULTLIST_CONFIGRow() As TBPMO_RESULTLIST_CONFIGRow
|
||||
Return CType(Me.NewRow,TBPMO_RESULTLIST_CONFIGRow)
|
||||
Public Function NewTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow() As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Return CType(Me.NewRow,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Function NewRowFromBuilder(ByVal builder As Global.System.Data.DataRowBuilder) As Global.System.Data.DataRow
|
||||
Return New TBPMO_RESULTLIST_CONFIGRow(builder)
|
||||
Return New TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow(builder)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Function GetRowType() As Global.System.Type
|
||||
Return GetType(TBPMO_RESULTLIST_CONFIGRow)
|
||||
Return GetType(TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Sub OnRowChanged(ByVal e As Global.System.Data.DataRowChangeEventArgs)
|
||||
MyBase.OnRowChanged(e)
|
||||
If (Not (Me.TBPMO_RESULTLIST_CONFIGRowChangedEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_RESULTLIST_CONFIGRowChanged(Me, New TBPMO_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_RESULTLIST_CONFIGRow), e.Action))
|
||||
If (Not (Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangedEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanged(Me, New TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow), e.Action))
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@ -3884,8 +3883,8 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Sub OnRowChanging(ByVal e As Global.System.Data.DataRowChangeEventArgs)
|
||||
MyBase.OnRowChanging(e)
|
||||
If (Not (Me.TBPMO_RESULTLIST_CONFIGRowChangingEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_RESULTLIST_CONFIGRowChanging(Me, New TBPMO_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_RESULTLIST_CONFIGRow), e.Action))
|
||||
If (Not (Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangingEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanging(Me, New TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow), e.Action))
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@ -3893,8 +3892,8 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Sub OnRowDeleted(ByVal e As Global.System.Data.DataRowChangeEventArgs)
|
||||
MyBase.OnRowDeleted(e)
|
||||
If (Not (Me.TBPMO_RESULTLIST_CONFIGRowDeletedEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_RESULTLIST_CONFIGRowDeleted(Me, New TBPMO_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_RESULTLIST_CONFIGRow), e.Action))
|
||||
If (Not (Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeletedEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleted(Me, New TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow), e.Action))
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@ -3902,14 +3901,14 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Protected Overrides Sub OnRowDeleting(ByVal e As Global.System.Data.DataRowChangeEventArgs)
|
||||
MyBase.OnRowDeleting(e)
|
||||
If (Not (Me.TBPMO_RESULTLIST_CONFIGRowDeletingEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_RESULTLIST_CONFIGRowDeleting(Me, New TBPMO_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_RESULTLIST_CONFIGRow), e.Action))
|
||||
If (Not (Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeletingEvent) Is Nothing) Then
|
||||
RaiseEvent TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleting(Me, New TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent(CType(e.Row,TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow), e.Action))
|
||||
End If
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub RemoveTBPMO_RESULTLIST_CONFIGRow(ByVal row As TBPMO_RESULTLIST_CONFIGRow)
|
||||
Public Sub RemoveTBPMO_DOCSEARCH_RESULTLIST_CONFIGRow(ByVal row As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow)
|
||||
Me.Rows.Remove(row)
|
||||
End Sub
|
||||
|
||||
@ -3936,7 +3935,7 @@ Partial Public Class DD_ECMAdmin
|
||||
type.Attributes.Add(attribute1)
|
||||
Dim attribute2 As Global.System.Xml.Schema.XmlSchemaAttribute = New Global.System.Xml.Schema.XmlSchemaAttribute()
|
||||
attribute2.Name = "tableTypeName"
|
||||
attribute2.FixedValue = "TBPMO_RESULTLIST_CONFIGDataTable"
|
||||
attribute2.FixedValue = "TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable"
|
||||
type.Attributes.Add(attribute2)
|
||||
type.Particle = sequence
|
||||
Dim dsSchema As Global.System.Xml.Schema.XmlSchema = ds.GetSchemaSerializable
|
||||
@ -6815,37 +6814,37 @@ Partial Public Class DD_ECMAdmin
|
||||
'''<summary>
|
||||
'''Represents strongly named DataRow class.
|
||||
'''</summary>
|
||||
Partial Public Class TBPMO_RESULTLIST_CONFIGRow
|
||||
Partial Public Class TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Inherits Global.System.Data.DataRow
|
||||
|
||||
Private tableTBPMO_RESULTLIST_CONFIG As TBPMO_RESULTLIST_CONFIGDataTable
|
||||
Private tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG As TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Friend Sub New(ByVal rb As Global.System.Data.DataRowBuilder)
|
||||
MyBase.New(rb)
|
||||
Me.tableTBPMO_RESULTLIST_CONFIG = CType(Me.Table,TBPMO_RESULTLIST_CONFIGDataTable)
|
||||
Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG = CType(Me.Table,TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable)
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property GUID() As Integer
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.GUIDColumn),Integer)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.GUIDColumn),Integer)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.GUIDColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.GUIDColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property NAME() As String
|
||||
Public Property ENTITY_ID() As Integer
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.NAMEColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ENTITY_IDColumn),Integer)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.NAMEColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ENTITY_IDColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6853,10 +6852,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property LANGUAGE() As String
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.LANGUAGEColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.LANGUAGEColumn),String)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.LANGUAGEColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.LANGUAGEColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6864,10 +6863,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property COLUMN_VIEW() As String
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.COLUMN_VIEWColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.COLUMN_VIEWColumn),String)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.COLUMN_VIEWColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.COLUMN_VIEWColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6875,10 +6874,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property HEADER_CAPTION() As String
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.HEADER_CAPTIONColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.HEADER_CAPTIONColumn),String)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.HEADER_CAPTIONColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.HEADER_CAPTIONColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6886,10 +6885,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property WIDTH() As Integer
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.WIDTHColumn),Integer)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.WIDTHColumn),Integer)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.WIDTHColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.WIDTHColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6897,10 +6896,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property TYPE_ID() As Byte
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.TYPE_IDColumn),Byte)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.TYPE_IDColumn),Byte)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.TYPE_IDColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.TYPE_IDColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6908,10 +6907,10 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property ADDED_WHO() As String
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHOColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHOColumn),String)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHOColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHOColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6920,13 +6919,14 @@ Partial Public Class DD_ECMAdmin
|
||||
Public Property ADDED_WHEN() As Date
|
||||
Get
|
||||
Try
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHENColumn),Date)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHENColumn),Date)
|
||||
Catch e As Global.System.InvalidCastException
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte ADDED_WHEN in Tabelle TBPMO_RESULTLIST_CONFIG ist DBNull.", e)
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte ADDED_WHEN in Tabelle TBPMO_DOCSEARCH_RESULTLIST_CONFIG ist D"& _
|
||||
"BNull.", e)
|
||||
End Try
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHENColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHENColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6935,13 +6935,14 @@ Partial Public Class DD_ECMAdmin
|
||||
Public Property CHANGED_WHO() As String
|
||||
Get
|
||||
Try
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHOColumn),String)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHOColumn),String)
|
||||
Catch e As Global.System.InvalidCastException
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHO in Tabelle TBPMO_RESULTLIST_CONFIG ist DBNull.", e)
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHO in Tabelle TBPMO_DOCSEARCH_RESULTLIST_CONFIG ist "& _
|
||||
"DBNull.", e)
|
||||
End Try
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHOColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHOColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6950,13 +6951,14 @@ Partial Public Class DD_ECMAdmin
|
||||
Public Property CHANGED_WHEN() As Date
|
||||
Get
|
||||
Try
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHENColumn),Date)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHENColumn),Date)
|
||||
Catch e As Global.System.InvalidCastException
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHEN in Tabelle TBPMO_RESULTLIST_CONFIG ist DBNull.", e)
|
||||
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte CHANGED_WHEN in Tabelle TBPMO_DOCSEARCH_RESULTLIST_CONFIG ist"& _
|
||||
" DBNull.", e)
|
||||
End Try
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHENColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHENColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -6964,47 +6966,47 @@ Partial Public Class DD_ECMAdmin
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Property VISIBLE() As Boolean
|
||||
Get
|
||||
Return CType(Me(Me.tableTBPMO_RESULTLIST_CONFIG.VISIBLEColumn),Boolean)
|
||||
Return CType(Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.VISIBLEColumn),Boolean)
|
||||
End Get
|
||||
Set
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.VISIBLEColumn) = value
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.VISIBLEColumn) = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Function IsADDED_WHENNull() As Boolean
|
||||
Return Me.IsNull(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHENColumn)
|
||||
Return Me.IsNull(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHENColumn)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub SetADDED_WHENNull()
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.ADDED_WHENColumn) = Global.System.Convert.DBNull
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHENColumn) = Global.System.Convert.DBNull
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Function IsCHANGED_WHONull() As Boolean
|
||||
Return Me.IsNull(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHOColumn)
|
||||
Return Me.IsNull(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHOColumn)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub SetCHANGED_WHONull()
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHOColumn) = Global.System.Convert.DBNull
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHOColumn) = Global.System.Convert.DBNull
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Function IsCHANGED_WHENNull() As Boolean
|
||||
Return Me.IsNull(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHENColumn)
|
||||
Return Me.IsNull(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHENColumn)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub SetCHANGED_WHENNull()
|
||||
Me(Me.tableTBPMO_RESULTLIST_CONFIG.CHANGED_WHENColumn) = Global.System.Convert.DBNull
|
||||
Me(Me.tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHENColumn) = Global.System.Convert.DBNull
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
@ -7841,16 +7843,16 @@ Partial Public Class DD_ECMAdmin
|
||||
'''Row event argument class
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Class TBPMO_RESULTLIST_CONFIGRowChangeEvent
|
||||
Public Class TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent
|
||||
Inherits Global.System.EventArgs
|
||||
|
||||
Private eventRow As TBPMO_RESULTLIST_CONFIGRow
|
||||
Private eventRow As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
|
||||
Private eventAction As Global.System.Data.DataRowAction
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public Sub New(ByVal row As TBPMO_RESULTLIST_CONFIGRow, ByVal action As Global.System.Data.DataRowAction)
|
||||
Public Sub New(ByVal row As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow, ByVal action As Global.System.Data.DataRowAction)
|
||||
MyBase.New
|
||||
Me.eventRow = row
|
||||
Me.eventAction = action
|
||||
@ -7858,7 +7860,7 @@ Partial Public Class DD_ECMAdmin
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Public ReadOnly Property Row() As TBPMO_RESULTLIST_CONFIGRow
|
||||
Public ReadOnly Property Row() As TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow
|
||||
Get
|
||||
Return Me.eventRow
|
||||
End Get
|
||||
@ -10430,7 +10432,7 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Global.System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner"& _
|
||||
", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Partial Public Class TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Partial Public Class TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
Inherits Global.System.ComponentModel.Component
|
||||
|
||||
Private WithEvents _adapter As Global.System.Data.SqlClient.SqlDataAdapter
|
||||
@ -10547,9 +10549,9 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Me._adapter = New Global.System.Data.SqlClient.SqlDataAdapter()
|
||||
Dim tableMapping As Global.System.Data.Common.DataTableMapping = New Global.System.Data.Common.DataTableMapping()
|
||||
tableMapping.SourceTable = "Table"
|
||||
tableMapping.DataSetTable = "TBPMO_RESULTLIST_CONFIG"
|
||||
tableMapping.DataSetTable = "TBPMO_DOCSEARCH_RESULTLIST_CONFIG"
|
||||
tableMapping.ColumnMappings.Add("GUID", "GUID")
|
||||
tableMapping.ColumnMappings.Add("NAME", "NAME")
|
||||
tableMapping.ColumnMappings.Add("ENTITY_ID", "ENTITY_ID")
|
||||
tableMapping.ColumnMappings.Add("LANGUAGE", "LANGUAGE")
|
||||
tableMapping.ColumnMappings.Add("COLUMN_VIEW", "COLUMN_VIEW")
|
||||
tableMapping.ColumnMappings.Add("HEADER_CAPTION", "HEADER_CAPTION")
|
||||
@ -10561,101 +10563,228 @@ Namespace DD_ECMAdminTableAdapters
|
||||
tableMapping.ColumnMappings.Add("CHANGED_WHEN", "CHANGED_WHEN")
|
||||
tableMapping.ColumnMappings.Add("VISIBLE", "VISIBLE")
|
||||
Me._adapter.TableMappings.Add(tableMapping)
|
||||
Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||
Me._adapter.DeleteCommand.Connection = Me.Connection
|
||||
Me._adapter.DeleteCommand.CommandText = "DELETE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "WHERE (GUID = @GUID)"
|
||||
Me._adapter.DeleteCommand.CommandType = Global.System.Data.CommandType.Text
|
||||
Me._adapter.DeleteCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||
Me._adapter.InsertCommand.Connection = Me.Connection
|
||||
Me._adapter.InsertCommand.CommandText = "INSERT INTO TBPMO_DOCSEARCH_RESULTLIST_CONFIG" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " (ENTITY_I" & _
|
||||
"D, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, VISIBLE)" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "V" & _
|
||||
"ALUES (@ENTITY_ID,@LANGUAGE,@COLUMN_VIEW,@HEADER_CAPTION,@WIDTH,@TYPE_ID," & _
|
||||
"@ADDED_WHO,@VISIBLE); " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CA" & _
|
||||
"PTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE" & _
|
||||
" FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = SCOPE_IDENTITY())"
|
||||
Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ENTITY_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "ENTITY_ID", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COLUMN_VIEW", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "COLUMN_VIEW", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@HEADER_CAPTION", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "HEADER_CAPTION", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@WIDTH", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "WIDTH", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE_ID", Global.System.Data.SqlDbType.TinyInt, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE_ID", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHO", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VISIBLE", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "VISIBLE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||
Me._adapter.UpdateCommand.Connection = Me.Connection
|
||||
Me._adapter.UpdateCommand.CommandText = "UPDATE TBPMO_DOCSEARCH_RESULTLIST_CONFIG"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET ENTITY_ID = @E"& _
|
||||
"NTITY_ID, LANGUAGE = @LANGUAGE, COLUMN_VIEW = @COLUMN_VIEW, HEADER_CAPTION = @HE"& _
|
||||
"ADER_CAPTION, WIDTH = @WIDTH, TYPE_ID = @TYPE_ID, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" CHA"& _
|
||||
"NGED_WHO = @CHANGED_WHO, VISIBLE = @VISIBLE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @GUID)"
|
||||
Me._adapter.UpdateCommand.CommandText = "UPDATE TBPMO_DOCSEARCH_RESULTLIST_CONFIG" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SET ENTITY_ID = @E" & _
|
||||
"NTITY_ID, LANGUAGE = @LANGUAGE, COLUMN_VIEW = @COLUMN_VIEW, HEADER_CAPTION = @HE" & _
|
||||
"ADER_CAPTION, WIDTH = @WIDTH, TYPE_ID = @TYPE_ID, " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " CHA" & _
|
||||
"NGED_WHO = @CHANGED_WHO, VISIBLE = @VISIBLE" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "WHERE (GUID = @GUID); " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "SE" & _
|
||||
"LECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADD" & _
|
||||
"ED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE FROM TBPMO_DOCSEARCH_RESU" & _
|
||||
"LTLIST_CONFIG WHERE (GUID = @GUID)"
|
||||
Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ENTITY_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "ENTITY_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COLUMN_VIEW", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "COLUMN_VIEW", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@HEADER_CAPTION", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "HEADER_CAPTION", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@WIDTH", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "WIDTH", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE_ID", Global.System.Data.SqlDbType.TinyInt, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VISIBLE", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "VISIBLE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ENTITY_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "ENTITY_ID", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COLUMN_VIEW", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "COLUMN_VIEW", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@HEADER_CAPTION", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "HEADER_CAPTION", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@WIDTH", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "WIDTH", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE_ID", Global.System.Data.SqlDbType.TinyInt, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE_ID", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VISIBLE", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "VISIBLE", Global.System.Data.DataRowVersion.Current, False, Nothing, "", "", ""))
|
||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, False, Nothing, "", "", ""))
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Private Sub InitConnection()
|
||||
Me._connection = New Global.System.Data.SqlClient.SqlConnection()
|
||||
Me._connection.ConnectionString = Global.DD_Record_Organiser.My.MySettings.Default.DD_DMSConnectionString
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Private Sub InitCommandCollection()
|
||||
Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {}
|
||||
Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
|
||||
Me._commandCollection(0).Connection = Me.Connection
|
||||
Me._commandCollection(0).CommandText = "SELECT TBPMO_DOCSEARCH_RESULTLIST_CONFIG.GUID, TBPMO_FORM.NAME, TBPMO_DOCS"& _
|
||||
"EARCH_RESULTLIST_CONFIG.LANGUAGE, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.COLUMN_VIEW,"& _
|
||||
" "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPMO_DOCSEARCH_RESULTLIST_CONFIG.HEADER_CAPTION, TB"& _
|
||||
"PMO_DOCSEARCH_RESULTLIST_CONFIG.WIDTH, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.TYPE_ID"& _
|
||||
", "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHO, TBPMO_"& _
|
||||
"DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHEN, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGE"& _
|
||||
"D_WHO, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHEN"& _
|
||||
", TBPMO_DOCSEARCH_RESULTLIST_CONFIG.VISIBLE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBPMO_DOCSEARCH_RES"& _
|
||||
"ULTLIST_CONFIG INNER JOIN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBPMO_FORM ON TBPMO_DOCSEARC"& _
|
||||
"H_RESULTLIST_CONFIG.ENTITY_ID = TBPMO_FORM.GUID"
|
||||
Me._commandCollection(0).CommandText = "SELECT TBPMO_DOCSEARCH_RESULTLIST_CONFIG.*" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "FROM TBPMO_DOCSEARC" & _
|
||||
"H_RESULTLIST_CONFIG"
|
||||
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Fill, true)> _
|
||||
Public Overloads Overridable Function Fill(ByVal dataTable As DD_ECMAdmin.TBPMO_RESULTLIST_CONFIGDataTable) As Integer
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Fill, True)> _
|
||||
Public Overridable Overloads Function Fill(ByVal dataTable As DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable) As Integer
|
||||
Me.Adapter.SelectCommand = Me.CommandCollection(0)
|
||||
If (Me.ClearBeforeFill = true) Then
|
||||
dataTable.Clear
|
||||
If (Me.ClearBeforeFill = True) Then
|
||||
dataTable.Clear()
|
||||
End If
|
||||
Dim returnValue As Integer = Me.Adapter.Fill(dataTable)
|
||||
Return returnValue
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.[Select], true)> _
|
||||
Public Overloads Overridable Function GetData() As DD_ECMAdmin.TBPMO_RESULTLIST_CONFIGDataTable
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.[Select], True)> _
|
||||
Public Overridable Overloads Function GetData() As DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable
|
||||
Me.Adapter.SelectCommand = Me.CommandCollection(0)
|
||||
Dim dataTable As DD_ECMAdmin.TBPMO_RESULTLIST_CONFIGDataTable = New DD_ECMAdmin.TBPMO_RESULTLIST_CONFIGDataTable()
|
||||
Dim dataTable As DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable = New DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable()
|
||||
Me.Adapter.Fill(dataTable)
|
||||
Return dataTable
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overloads Overridable Function Update(ByVal dataTable As DD_ECMAdmin.TBPMO_RESULTLIST_CONFIGDataTable) As Integer
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overridable Overloads Function Update(ByVal dataTable As DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable) As Integer
|
||||
Return Me.Adapter.Update(dataTable)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overloads Overridable Function Update(ByVal dataSet As DD_ECMAdmin) As Integer
|
||||
Return Me.Adapter.Update(dataSet, "TBPMO_RESULTLIST_CONFIG")
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overridable Overloads Function Update(ByVal dataSet As DD_ECMAdmin) As Integer
|
||||
Return Me.Adapter.Update(dataSet, "TBPMO_DOCSEARCH_RESULTLIST_CONFIG")
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overloads Overridable Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overridable Overloads Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer
|
||||
Return Me.Adapter.Update(New Global.System.Data.DataRow() {dataRow})
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overloads Overridable Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _
|
||||
Public Overridable Overloads Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
|
||||
Return Me.Adapter.Update(dataRows)
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Delete, True)> _
|
||||
Public Overridable Overloads Function Delete(ByVal GUID As Integer) As Integer
|
||||
Me.Adapter.DeleteCommand.Parameters(0).Value = CType(GUID, Integer)
|
||||
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.DeleteCommand.Connection.State
|
||||
If ((Me.Adapter.DeleteCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
|
||||
<> Global.System.Data.ConnectionState.Open) Then
|
||||
Me.Adapter.DeleteCommand.Connection.Open()
|
||||
End If
|
||||
Try
|
||||
Dim returnValue As Integer = Me.Adapter.DeleteCommand.ExecuteNonQuery
|
||||
Return returnValue
|
||||
Finally
|
||||
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||
Me.Adapter.DeleteCommand.Connection.Close()
|
||||
End If
|
||||
End Try
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Insert, True)> _
|
||||
Public Overridable Overloads Function Insert(ByVal ENTITY_ID As Integer, ByVal LANGUAGE As String, ByVal COLUMN_VIEW As String, ByVal HEADER_CAPTION As String, ByVal WIDTH As Integer, ByVal TYPE_ID As Byte, ByVal ADDED_WHO As String, ByVal VISIBLE As Boolean) As Integer
|
||||
Me.Adapter.InsertCommand.Parameters(0).Value = CType(ENTITY_ID, Integer)
|
||||
If (LANGUAGE Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("LANGUAGE")
|
||||
Else
|
||||
Me.Adapter.InsertCommand.Parameters(1).Value = CType(LANGUAGE, String)
|
||||
End If
|
||||
If (COLUMN_VIEW Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("COLUMN_VIEW")
|
||||
Else
|
||||
Me.Adapter.InsertCommand.Parameters(2).Value = CType(COLUMN_VIEW, String)
|
||||
End If
|
||||
If (HEADER_CAPTION Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("HEADER_CAPTION")
|
||||
Else
|
||||
Me.Adapter.InsertCommand.Parameters(3).Value = CType(HEADER_CAPTION, String)
|
||||
End If
|
||||
Me.Adapter.InsertCommand.Parameters(4).Value = CType(WIDTH, Integer)
|
||||
Me.Adapter.InsertCommand.Parameters(5).Value = CType(TYPE_ID, Byte)
|
||||
If (ADDED_WHO Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("ADDED_WHO")
|
||||
Else
|
||||
Me.Adapter.InsertCommand.Parameters(6).Value = CType(ADDED_WHO, String)
|
||||
End If
|
||||
Me.Adapter.InsertCommand.Parameters(7).Value = CType(VISIBLE, Boolean)
|
||||
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.InsertCommand.Connection.State
|
||||
If ((Me.Adapter.InsertCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
|
||||
<> Global.System.Data.ConnectionState.Open) Then
|
||||
Me.Adapter.InsertCommand.Connection.Open()
|
||||
End If
|
||||
Try
|
||||
Dim returnValue As Integer = Me.Adapter.InsertCommand.ExecuteNonQuery
|
||||
Return returnValue
|
||||
Finally
|
||||
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||
Me.Adapter.InsertCommand.Connection.Close()
|
||||
End If
|
||||
End Try
|
||||
End Function
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
|
||||
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Update, True)> _
|
||||
Public Overridable Overloads Function Update(ByVal ENTITY_ID As Integer, ByVal LANGUAGE As String, ByVal COLUMN_VIEW As String, ByVal HEADER_CAPTION As String, ByVal WIDTH As Integer, ByVal TYPE_ID As Byte, ByVal CHANGED_WHO As String, ByVal VISIBLE As Boolean, ByVal GUID As Integer) As Integer
|
||||
Me.Adapter.UpdateCommand.Parameters(0).Value = CType(ENTITY_ID, Integer)
|
||||
If (LANGUAGE Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("LANGUAGE")
|
||||
Else
|
||||
Me.Adapter.UpdateCommand.Parameters(1).Value = CType(LANGUAGE, String)
|
||||
End If
|
||||
If (COLUMN_VIEW Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("COLUMN_VIEW")
|
||||
Else
|
||||
Me.Adapter.UpdateCommand.Parameters(2).Value = CType(COLUMN_VIEW, String)
|
||||
End If
|
||||
If (HEADER_CAPTION Is Nothing) Then
|
||||
Throw New Global.System.ArgumentNullException("HEADER_CAPTION")
|
||||
Else
|
||||
Me.Adapter.UpdateCommand.Parameters(3).Value = CType(HEADER_CAPTION, String)
|
||||
End If
|
||||
Me.Adapter.UpdateCommand.Parameters(4).Value = CType(WIDTH, Integer)
|
||||
Me.Adapter.UpdateCommand.Parameters(5).Value = CType(TYPE_ID, Byte)
|
||||
If (CHANGED_WHO Is Nothing) Then
|
||||
Me.Adapter.UpdateCommand.Parameters(6).Value = Global.System.DBNull.Value
|
||||
Else
|
||||
Me.Adapter.UpdateCommand.Parameters(6).Value = CType(CHANGED_WHO, String)
|
||||
End If
|
||||
Me.Adapter.UpdateCommand.Parameters(7).Value = CType(VISIBLE, Boolean)
|
||||
Me.Adapter.UpdateCommand.Parameters(8).Value = CType(GUID, Integer)
|
||||
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.UpdateCommand.Connection.State
|
||||
If ((Me.Adapter.UpdateCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
|
||||
<> Global.System.Data.ConnectionState.Open) Then
|
||||
Me.Adapter.UpdateCommand.Connection.Open()
|
||||
End If
|
||||
Try
|
||||
Dim returnValue As Integer = Me.Adapter.UpdateCommand.ExecuteNonQuery
|
||||
Return returnValue
|
||||
Finally
|
||||
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||
Me.Adapter.UpdateCommand.Connection.Close()
|
||||
End If
|
||||
End Try
|
||||
End Function
|
||||
End Class
|
||||
|
||||
'''<summary>
|
||||
@ -10679,7 +10808,7 @@ Namespace DD_ECMAdminTableAdapters
|
||||
|
||||
Private _tBPMO_SAP_FUBATableAdapter As TBPMO_SAP_FUBATableAdapter
|
||||
|
||||
Private _tBPMO_RESULTLIST_CONFIGTableAdapter As TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Private _tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter As TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
|
||||
Private _backupDataSetBeforeUpdate As Boolean
|
||||
|
||||
@ -10757,12 +10886,12 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Global.System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso"& _
|
||||
"ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3"& _
|
||||
"a", "System.Drawing.Design.UITypeEditor")> _
|
||||
Public Property TBPMO_RESULTLIST_CONFIGTableAdapter() As TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Public Property TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter() As TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
Get
|
||||
Return Me._tBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Return Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
End Get
|
||||
Set
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter = value
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@ -10801,9 +10930,9 @@ Namespace DD_ECMAdminTableAdapters
|
||||
AndAlso (Not (Me._tBPMO_SAP_FUBATableAdapter.Connection) Is Nothing)) Then
|
||||
Return Me._tBPMO_SAP_FUBATableAdapter.Connection
|
||||
End If
|
||||
If ((Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) _
|
||||
AndAlso (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection) Is Nothing)) Then
|
||||
Return Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection
|
||||
If ((Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) _
|
||||
AndAlso (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection) Is Nothing)) Then
|
||||
Return Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection
|
||||
End If
|
||||
Return Nothing
|
||||
End Get
|
||||
@ -10830,7 +10959,7 @@ Namespace DD_ECMAdminTableAdapters
|
||||
If (Not (Me._tBPMO_SAP_FUBATableAdapter) Is Nothing) Then
|
||||
count = (count + 1)
|
||||
End If
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
count = (count + 1)
|
||||
End If
|
||||
Return count
|
||||
@ -10880,12 +11009,12 @@ Namespace DD_ECMAdminTableAdapters
|
||||
allChangedRows.AddRange(updatedRows)
|
||||
End If
|
||||
End If
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim updatedRows() As Global.System.Data.DataRow = dataSet.TBPMO_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.ModifiedCurrent)
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim updatedRows() As Global.System.Data.DataRow = dataSet.TBPMO_DOCSEARCH_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.ModifiedCurrent)
|
||||
updatedRows = Me.GetRealUpdatedRows(updatedRows, allAddedRows)
|
||||
If ((Not (updatedRows) Is Nothing) _
|
||||
AndAlso (0 < updatedRows.Length)) Then
|
||||
result = (result + Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Update(updatedRows))
|
||||
result = (result + Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Update(updatedRows))
|
||||
allChangedRows.AddRange(updatedRows)
|
||||
End If
|
||||
End If
|
||||
@ -10931,11 +11060,11 @@ Namespace DD_ECMAdminTableAdapters
|
||||
allAddedRows.AddRange(addedRows)
|
||||
End If
|
||||
End If
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim addedRows() As Global.System.Data.DataRow = dataSet.TBPMO_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Added)
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim addedRows() As Global.System.Data.DataRow = dataSet.TBPMO_DOCSEARCH_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Added)
|
||||
If ((Not (addedRows) Is Nothing) _
|
||||
AndAlso (0 < addedRows.Length)) Then
|
||||
result = (result + Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Update(addedRows))
|
||||
result = (result + Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Update(addedRows))
|
||||
allAddedRows.AddRange(addedRows)
|
||||
End If
|
||||
End If
|
||||
@ -10949,11 +11078,11 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")> _
|
||||
Private Function UpdateDeletedRows(ByVal dataSet As DD_ECMAdmin, ByVal allChangedRows As Global.System.Collections.Generic.List(Of Global.System.Data.DataRow)) As Integer
|
||||
Dim result As Integer = 0
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim deletedRows() As Global.System.Data.DataRow = dataSet.TBPMO_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Deleted)
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Dim deletedRows() As Global.System.Data.DataRow = dataSet.TBPMO_DOCSEARCH_RESULTLIST_CONFIG.Select(Nothing, Nothing, Global.System.Data.DataViewRowState.Deleted)
|
||||
If ((Not (deletedRows) Is Nothing) _
|
||||
AndAlso (0 < deletedRows.Length)) Then
|
||||
result = (result + Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Update(deletedRows))
|
||||
result = (result + Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Update(deletedRows))
|
||||
allChangedRows.AddRange(deletedRows)
|
||||
End If
|
||||
End If
|
||||
@ -11050,8 +11179,8 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Throw New Global.System.ArgumentException("Für alle von einem TableAdapterManager verwalteten Instanzen von TableAdapter mus"& _
|
||||
"s die gleiche Verbindungszeichenfolge verwendet werden.")
|
||||
End If
|
||||
If ((Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) _
|
||||
AndAlso (Me.MatchTableAdapterConnection(Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection) = false)) Then
|
||||
If ((Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) _
|
||||
AndAlso (Me.MatchTableAdapterConnection(Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection) = false)) Then
|
||||
Throw New Global.System.ArgumentException("Für alle von einem TableAdapterManager verwalteten Instanzen von TableAdapter mus"& _
|
||||
"s die gleiche Verbindungszeichenfolge verwendet werden.")
|
||||
End If
|
||||
@ -11125,13 +11254,13 @@ Namespace DD_ECMAdminTableAdapters
|
||||
adaptersWithAcceptChangesDuringUpdate.Add(Me._tBPMO_SAP_FUBATableAdapter.Adapter)
|
||||
End If
|
||||
End If
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
revertConnections.Add(Me._tBPMO_RESULTLIST_CONFIGTableAdapter, Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection)
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection = CType(workConnection,Global.System.Data.SqlClient.SqlConnection)
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Transaction = CType(workTransaction,Global.System.Data.SqlClient.SqlTransaction)
|
||||
If Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Adapter.AcceptChangesDuringUpdate Then
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Adapter.AcceptChangesDuringUpdate = false
|
||||
adaptersWithAcceptChangesDuringUpdate.Add(Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Adapter)
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
revertConnections.Add(Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter, Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection)
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection = CType(workConnection,Global.System.Data.SqlClient.SqlConnection)
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Transaction = CType(workTransaction,Global.System.Data.SqlClient.SqlTransaction)
|
||||
If Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Adapter.AcceptChangesDuringUpdate Then
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Adapter.AcceptChangesDuringUpdate = false
|
||||
adaptersWithAcceptChangesDuringUpdate.Add(Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Adapter)
|
||||
End If
|
||||
End If
|
||||
'
|
||||
@ -11210,9 +11339,9 @@ Namespace DD_ECMAdminTableAdapters
|
||||
Me._tBPMO_SAP_FUBATableAdapter.Connection = CType(revertConnections(Me._tBPMO_SAP_FUBATableAdapter),Global.System.Data.SqlClient.SqlConnection)
|
||||
Me._tBPMO_SAP_FUBATableAdapter.Transaction = Nothing
|
||||
End If
|
||||
If (Not (Me._tBPMO_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Connection = CType(revertConnections(Me._tBPMO_RESULTLIST_CONFIGTableAdapter),Global.System.Data.SqlClient.SqlConnection)
|
||||
Me._tBPMO_RESULTLIST_CONFIGTableAdapter.Transaction = Nothing
|
||||
If (Not (Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter) Is Nothing) Then
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection = CType(revertConnections(Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter),Global.System.Data.SqlClient.SqlConnection)
|
||||
Me._tBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Transaction = Nothing
|
||||
End If
|
||||
If (0 < adaptersWithAcceptChangesDuringUpdate.Count) Then
|
||||
Dim adapters((adaptersWithAcceptChangesDuringUpdate.Count) - 1) As Global.System.Data.Common.DataAdapter
|
||||
|
||||
@ -59,12 +59,35 @@
|
||||
</ColumnUISetting>
|
||||
</ColumnUISettings>
|
||||
</TableUISetting>
|
||||
<TableUISetting Name="TBPMO_RESULTLIST_CONFIG">
|
||||
<TableUISetting Name="TBPMO_DOCSEARCH_RESULTLIST_CONFIG">
|
||||
<ColumnUISettings>
|
||||
<ColumnUISetting Name="LANGUAGE">
|
||||
<ControlSettings><ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<ControlSettings>
|
||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
</ControlSetting></ControlSettings>
|
||||
</ControlSetting>
|
||||
</ControlSettings>
|
||||
</ColumnUISetting>
|
||||
<ColumnUISetting Name="TYPE_ID">
|
||||
<ControlSettings>
|
||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
||||
<BindableControlInfo Name="ComboBox" Type="System.Windows.Forms.ComboBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
</ControlSetting>
|
||||
</ControlSettings>
|
||||
</ColumnUISetting>
|
||||
<ColumnUISetting Name="ADDED_WHEN">
|
||||
<ControlSettings>
|
||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
||||
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
</ControlSetting>
|
||||
</ControlSettings>
|
||||
</ColumnUISetting>
|
||||
<ColumnUISetting Name="CHANGED_WHEN">
|
||||
<ControlSettings>
|
||||
<ControlSetting ArtifactName="Microsoft:System.Windows.Forms:Form">
|
||||
<BindableControlInfo Name="TextBox" Type="System.Windows.Forms.TextBox" AssemblyName="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
</ControlSetting>
|
||||
</ControlSettings>
|
||||
</ColumnUISetting>
|
||||
</ColumnUISettings>
|
||||
</TableUISetting>
|
||||
|
||||
@ -453,25 +453,68 @@ SELECT GUID, NAME, COMMENT, TableName, Host, SystemNumber, UserName, Password, C
|
||||
</Mappings>
|
||||
<Sources />
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBPMO_RESULTLIST_CONFIGTableAdapter" GeneratorDataComponentClassName="TBPMO_RESULTLIST_CONFIGTableAdapter" Name="TBPMO_RESULTLIST_CONFIG" UserDataComponentName="TBPMO_RESULTLIST_CONFIGTableAdapter">
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter" GeneratorDataComponentClassName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter" Name="TBPMO_DOCSEARCH_RESULTLIST_CONFIG" UserDataComponentName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter">
|
||||
<MainSource>
|
||||
<DbSource ConnectionRef="DD_DMSConnectionString (MySettings)" DbObjectType="Unknown" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DbSource ConnectionRef="DD_DMSConnectionString (MySettings)" DbObjectName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DeleteCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>DELETE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG
|
||||
WHERE (GUID = @GUID)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>INSERT INTO TBPMO_DOCSEARCH_RESULTLIST_CONFIG
|
||||
(ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, VISIBLE)
|
||||
VALUES (@ENTITY_ID,@LANGUAGE,@COLUMN_VIEW,@HEADER_CAPTION,@WIDTH,@TYPE_ID,@ADDED_WHO,@VISIBLE);
|
||||
SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = SCOPE_IDENTITY())</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="COLUMN_VIEW" ColumnName="COLUMN_VIEW" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@COLUMN_VIEW" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="COLUMN_VIEW" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="HEADER_CAPTION" ColumnName="HEADER_CAPTION" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@HEADER_CAPTION" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="HEADER_CAPTION" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT TBPMO_DOCSEARCH_RESULTLIST_CONFIG.GUID, TBPMO_FORM.NAME, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.LANGUAGE, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.COLUMN_VIEW,
|
||||
TBPMO_DOCSEARCH_RESULTLIST_CONFIG.HEADER_CAPTION, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.WIDTH, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.TYPE_ID,
|
||||
TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHO, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHEN, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHO,
|
||||
TBPMO_DOCSEARCH_RESULTLIST_CONFIG.CHANGED_WHEN, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.VISIBLE, TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ENTITY_ID
|
||||
FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
TBPMO_FORM ON TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ENTITY_ID = TBPMO_FORM.GUID</CommandText>
|
||||
<CommandText>SELECT TBPMO_DOCSEARCH_RESULTLIST_CONFIG.*
|
||||
FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>UPDATE TBPMO_DOCSEARCH_RESULTLIST_CONFIG
|
||||
SET ENTITY_ID = @ENTITY_ID, LANGUAGE = @LANGUAGE, COLUMN_VIEW = @COLUMN_VIEW, HEADER_CAPTION = @HEADER_CAPTION, WIDTH = @WIDTH, TYPE_ID = @TYPE_ID,
|
||||
CHANGED_WHO = @CHANGED_WHO, VISIBLE = @VISIBLE
|
||||
WHERE (GUID = @GUID);
|
||||
SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = @GUID)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="COLUMN_VIEW" ColumnName="COLUMN_VIEW" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@COLUMN_VIEW" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="COLUMN_VIEW" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="HEADER_CAPTION" ColumnName="HEADER_CAPTION" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@HEADER_CAPTION" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="HEADER_CAPTION" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</UpdateCommand>
|
||||
</DbSource>
|
||||
</MainSource>
|
||||
<Mappings>
|
||||
<Mapping SourceColumn="GUID" DataSetColumn="GUID" />
|
||||
<Mapping SourceColumn="NAME" DataSetColumn="NAME" />
|
||||
<Mapping SourceColumn="ENTITY_ID" DataSetColumn="ENTITY_ID" />
|
||||
<Mapping SourceColumn="LANGUAGE" DataSetColumn="LANGUAGE" />
|
||||
<Mapping SourceColumn="COLUMN_VIEW" DataSetColumn="COLUMN_VIEW" />
|
||||
<Mapping SourceColumn="HEADER_CAPTION" DataSetColumn="HEADER_CAPTION" />
|
||||
@ -482,7 +525,6 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
<Mapping SourceColumn="CHANGED_WHO" DataSetColumn="CHANGED_WHO" />
|
||||
<Mapping SourceColumn="CHANGED_WHEN" DataSetColumn="CHANGED_WHEN" />
|
||||
<Mapping SourceColumn="VISIBLE" DataSetColumn="VISIBLE" />
|
||||
<Mapping SourceColumn="ENTITY_ID" DataSetColumn="ENTITY_ID" />
|
||||
</Mappings>
|
||||
<Sources />
|
||||
</TableAdapter>
|
||||
@ -494,7 +536,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
<xs:element name="DD_ECMAdmin" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DD_ECMAdmin" msprop:Generator_UserDSName="DD_ECMAdmin">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_TableClassName="TBPMO_FORM_CONSTRUCTORDataTable" msprop:Generator_TableVarName="tableTBPMO_FORM_CONSTRUCTOR" msprop:Generator_RowChangedName="TBPMO_FORM_CONSTRUCTORRowChanged" msprop:Generator_TablePropName="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_RowDeletingName="TBPMO_FORM_CONSTRUCTORRowDeleting" msprop:Generator_RowChangingName="TBPMO_FORM_CONSTRUCTORRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_FORM_CONSTRUCTORRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_FORM_CONSTRUCTORRowDeleted" msprop:Generator_RowClassName="TBPMO_FORM_CONSTRUCTORRow" msprop:Generator_UserTableName="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_RowEvArgName="TBPMO_FORM_CONSTRUCTORRowChangeEvent">
|
||||
<xs:element name="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_TableClassName="TBPMO_FORM_CONSTRUCTORDataTable" msprop:Generator_TableVarName="tableTBPMO_FORM_CONSTRUCTOR" msprop:Generator_TablePropName="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_RowDeletingName="TBPMO_FORM_CONSTRUCTORRowDeleting" msprop:Generator_RowChangingName="TBPMO_FORM_CONSTRUCTORRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_FORM_CONSTRUCTORRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_FORM_CONSTRUCTORRowDeleted" msprop:Generator_UserTableName="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_RowChangedName="TBPMO_FORM_CONSTRUCTORRowChanged" msprop:Generator_RowEvArgName="TBPMO_FORM_CONSTRUCTORRowChangeEvent" msprop:Generator_RowClassName="TBPMO_FORM_CONSTRUCTORRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
@ -540,7 +582,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_TableClassName="TBPMO_FORM_CONSTRUCTOR_DETAILDataTable" msprop:Generator_TableVarName="tableTBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_RowChangedName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChanged" msprop:Generator_TablePropName="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_RowDeletingName="TBPMO_FORM_CONSTRUCTOR_DETAILRowDeleting" msprop:Generator_RowChangingName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_FORM_CONSTRUCTOR_DETAILRowDeleted" msprop:Generator_RowClassName="TBPMO_FORM_CONSTRUCTOR_DETAILRow" msprop:Generator_UserTableName="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_RowEvArgName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChangeEvent">
|
||||
<xs:element name="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_TableClassName="TBPMO_FORM_CONSTRUCTOR_DETAILDataTable" msprop:Generator_TableVarName="tableTBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_TablePropName="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_RowDeletingName="TBPMO_FORM_CONSTRUCTOR_DETAILRowDeleting" msprop:Generator_RowChangingName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_FORM_CONSTRUCTOR_DETAILRowDeleted" msprop:Generator_UserTableName="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_RowChangedName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChanged" msprop:Generator_RowEvArgName="TBPMO_FORM_CONSTRUCTOR_DETAILRowChangeEvent" msprop:Generator_RowClassName="TBPMO_FORM_CONSTRUCTOR_DETAILRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
@ -661,7 +703,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBDD_CONNECTION" msprop:Generator_TableClassName="TBDD_CONNECTIONDataTable" msprop:Generator_TableVarName="tableTBDD_CONNECTION" msprop:Generator_TablePropName="TBDD_CONNECTION" msprop:Generator_RowDeletingName="TBDD_CONNECTIONRowDeleting" msprop:Generator_RowChangingName="TBDD_CONNECTIONRowChanging" msprop:Generator_RowEvHandlerName="TBDD_CONNECTIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_CONNECTIONRowDeleted" msprop:Generator_UserTableName="TBDD_CONNECTION" msprop:Generator_RowChangedName="TBDD_CONNECTIONRowChanged" msprop:Generator_RowEvArgName="TBDD_CONNECTIONRowChangeEvent" msprop:Generator_RowClassName="TBDD_CONNECTIONRow">
|
||||
<xs:element name="TBDD_CONNECTION" msprop:Generator_TableClassName="TBDD_CONNECTIONDataTable" msprop:Generator_TableVarName="tableTBDD_CONNECTION" msprop:Generator_RowChangedName="TBDD_CONNECTIONRowChanged" msprop:Generator_TablePropName="TBDD_CONNECTION" msprop:Generator_RowDeletingName="TBDD_CONNECTIONRowDeleting" msprop:Generator_RowChangingName="TBDD_CONNECTIONRowChanging" msprop:Generator_RowEvHandlerName="TBDD_CONNECTIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_CONNECTIONRowDeleted" msprop:Generator_RowClassName="TBDD_CONNECTIONRow" msprop:Generator_UserTableName="TBDD_CONNECTION" msprop:Generator_RowEvArgName="TBDD_CONNECTIONRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:short" />
|
||||
@ -734,14 +776,14 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="DT_VORSCHAU" msprop:Generator_TableClassName="DT_VORSCHAUDataTable" msprop:Generator_TableVarName="tableDT_VORSCHAU" msprop:Generator_RowChangedName="DT_VORSCHAURowChanged" msprop:Generator_TablePropName="DT_VORSCHAU" msprop:Generator_RowDeletingName="DT_VORSCHAURowDeleting" msprop:Generator_RowChangingName="DT_VORSCHAURowChanging" msprop:Generator_RowEvHandlerName="DT_VORSCHAURowChangeEventHandler" msprop:Generator_RowDeletedName="DT_VORSCHAURowDeleted" msprop:Generator_RowClassName="DT_VORSCHAURow" msprop:Generator_UserTableName="DT_VORSCHAU" msprop:Generator_RowEvArgName="DT_VORSCHAURowChangeEvent">
|
||||
<xs:element name="DT_VORSCHAU" msprop:Generator_TableClassName="DT_VORSCHAUDataTable" msprop:Generator_TableVarName="tableDT_VORSCHAU" msprop:Generator_TablePropName="DT_VORSCHAU" msprop:Generator_RowDeletingName="DT_VORSCHAURowDeleting" msprop:Generator_RowChangingName="DT_VORSCHAURowChanging" msprop:Generator_RowEvHandlerName="DT_VORSCHAURowChangeEventHandler" msprop:Generator_RowDeletedName="DT_VORSCHAURowDeleted" msprop:Generator_UserTableName="DT_VORSCHAU" msprop:Generator_RowChangedName="DT_VORSCHAURowChanged" msprop:Generator_RowEvArgName="DT_VORSCHAURowChangeEvent" msprop:Generator_RowClassName="DT_VORSCHAURow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="VALUE" msprop:Generator_ColumnVarNameInTable="columnVALUE" msprop:Generator_ColumnPropNameInRow="VALUE" msprop:Generator_ColumnPropNameInTable="VALUEColumn" msprop:Generator_UserColumnName="VALUE" type="xs:string" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VWTEMPQUICKVIEW" msprop:Generator_TableClassName="VWTEMPQUICKVIEWDataTable" msprop:Generator_TableVarName="tableVWTEMPQUICKVIEW" msprop:Generator_TablePropName="VWTEMPQUICKVIEW" msprop:Generator_RowDeletingName="VWTEMPQUICKVIEWRowDeleting" msprop:Generator_RowChangingName="VWTEMPQUICKVIEWRowChanging" msprop:Generator_RowEvHandlerName="VWTEMPQUICKVIEWRowChangeEventHandler" msprop:Generator_RowDeletedName="VWTEMPQUICKVIEWRowDeleted" msprop:Generator_UserTableName="VWTEMPQUICKVIEW" msprop:Generator_RowChangedName="VWTEMPQUICKVIEWRowChanged" msprop:Generator_RowEvArgName="VWTEMPQUICKVIEWRowChangeEvent" msprop:Generator_RowClassName="VWTEMPQUICKVIEWRow">
|
||||
<xs:element name="VWTEMPQUICKVIEW" msprop:Generator_TableClassName="VWTEMPQUICKVIEWDataTable" msprop:Generator_TableVarName="tableVWTEMPQUICKVIEW" msprop:Generator_RowChangedName="VWTEMPQUICKVIEWRowChanged" msprop:Generator_TablePropName="VWTEMPQUICKVIEW" msprop:Generator_RowDeletingName="VWTEMPQUICKVIEWRowDeleting" msprop:Generator_RowChangingName="VWTEMPQUICKVIEWRowChanging" msprop:Generator_RowEvHandlerName="VWTEMPQUICKVIEWRowChangeEventHandler" msprop:Generator_RowDeletedName="VWTEMPQUICKVIEWRowDeleted" msprop:Generator_RowClassName="VWTEMPQUICKVIEWRow" msprop:Generator_UserTableName="VWTEMPQUICKVIEW" msprop:Generator_RowEvArgName="VWTEMPQUICKVIEWRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Record-ID" msprop:Generator_ColumnVarNameInTable="_columnRecord_ID" msprop:Generator_ColumnPropNameInRow="_Record_ID" msprop:Generator_ColumnPropNameInTable="_Record_IDColumn" msprop:Generator_UserColumnName="Record-ID" type="xs:int" />
|
||||
@ -770,7 +812,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBAD_Users" msprop:Generator_TableClassName="TBAD_UsersDataTable" msprop:Generator_TableVarName="tableTBAD_Users" msprop:Generator_RowChangedName="TBAD_UsersRowChanged" msprop:Generator_TablePropName="TBAD_Users" msprop:Generator_RowDeletingName="TBAD_UsersRowDeleting" msprop:Generator_RowChangingName="TBAD_UsersRowChanging" msprop:Generator_RowEvHandlerName="TBAD_UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="TBAD_UsersRowDeleted" msprop:Generator_RowClassName="TBAD_UsersRow" msprop:Generator_UserTableName="TBAD_Users" msprop:Generator_RowEvArgName="TBAD_UsersRowChangeEvent">
|
||||
<xs:element name="TBAD_Users" msprop:Generator_TableClassName="TBAD_UsersDataTable" msprop:Generator_TableVarName="tableTBAD_Users" msprop:Generator_TablePropName="TBAD_Users" msprop:Generator_RowDeletingName="TBAD_UsersRowDeleting" msprop:Generator_RowChangingName="TBAD_UsersRowChanging" msprop:Generator_RowEvHandlerName="TBAD_UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="TBAD_UsersRowDeleted" msprop:Generator_UserTableName="TBAD_Users" msprop:Generator_RowChangedName="TBAD_UsersRowChanged" msprop:Generator_RowEvArgName="TBAD_UsersRowChangeEvent" msprop:Generator_RowClassName="TBAD_UsersRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Select" msprop:Generator_ColumnVarNameInTable="columnSelect" msprop:Generator_ColumnPropNameInRow="_Select" msprop:Generator_ColumnPropNameInTable="SelectColumn" msprop:Generator_UserColumnName="Select" type="xs:boolean" default="false" minOccurs="0" />
|
||||
@ -782,7 +824,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBWH_ENTITIES" msprop:Generator_TableClassName="TBWH_ENTITIESDataTable" msprop:Generator_TableVarName="tableTBWH_ENTITIES" msprop:Generator_TablePropName="TBWH_ENTITIES" msprop:Generator_RowDeletingName="TBWH_ENTITIESRowDeleting" msprop:Generator_RowChangingName="TBWH_ENTITIESRowChanging" msprop:Generator_RowEvHandlerName="TBWH_ENTITIESRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_ENTITIESRowDeleted" msprop:Generator_UserTableName="TBWH_ENTITIES" msprop:Generator_RowChangedName="TBWH_ENTITIESRowChanged" msprop:Generator_RowEvArgName="TBWH_ENTITIESRowChangeEvent" msprop:Generator_RowClassName="TBWH_ENTITIESRow">
|
||||
<xs:element name="TBWH_ENTITIES" msprop:Generator_TableClassName="TBWH_ENTITIESDataTable" msprop:Generator_TableVarName="tableTBWH_ENTITIES" msprop:Generator_RowChangedName="TBWH_ENTITIESRowChanged" msprop:Generator_TablePropName="TBWH_ENTITIES" msprop:Generator_RowDeletingName="TBWH_ENTITIESRowDeleting" msprop:Generator_RowChangingName="TBWH_ENTITIESRowChanging" msprop:Generator_RowEvHandlerName="TBWH_ENTITIESRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_ENTITIESRowDeleted" msprop:Generator_RowClassName="TBWH_ENTITIESRow" msprop:Generator_UserTableName="TBWH_ENTITIES" msprop:Generator_RowEvArgName="TBWH_ENTITIESRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
@ -803,7 +845,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBWH_USER_GROUPS" msprop:Generator_TableClassName="TBWH_USER_GROUPSDataTable" msprop:Generator_TableVarName="tableTBWH_USER_GROUPS" msprop:Generator_TablePropName="TBWH_USER_GROUPS" msprop:Generator_RowDeletingName="TBWH_USER_GROUPSRowDeleting" msprop:Generator_RowChangingName="TBWH_USER_GROUPSRowChanging" msprop:Generator_RowEvHandlerName="TBWH_USER_GROUPSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_USER_GROUPSRowDeleted" msprop:Generator_UserTableName="TBWH_USER_GROUPS" msprop:Generator_RowChangedName="TBWH_USER_GROUPSRowChanged" msprop:Generator_RowEvArgName="TBWH_USER_GROUPSRowChangeEvent" msprop:Generator_RowClassName="TBWH_USER_GROUPSRow">
|
||||
<xs:element name="TBWH_USER_GROUPS" msprop:Generator_TableClassName="TBWH_USER_GROUPSDataTable" msprop:Generator_TableVarName="tableTBWH_USER_GROUPS" msprop:Generator_RowChangedName="TBWH_USER_GROUPSRowChanged" msprop:Generator_TablePropName="TBWH_USER_GROUPS" msprop:Generator_RowDeletingName="TBWH_USER_GROUPSRowDeleting" msprop:Generator_RowChangingName="TBWH_USER_GROUPSRowChanging" msprop:Generator_RowEvHandlerName="TBWH_USER_GROUPSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_USER_GROUPSRowDeleted" msprop:Generator_RowClassName="TBWH_USER_GROUPSRow" msprop:Generator_UserTableName="TBWH_USER_GROUPS" msprop:Generator_RowEvArgName="TBWH_USER_GROUPSRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
@ -817,7 +859,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBWH_Users1" msprop:Generator_TableClassName="TBWH_Users1DataTable" msprop:Generator_TableVarName="tableTBWH_Users1" msprop:Generator_TablePropName="TBWH_Users1" msprop:Generator_RowDeletingName="TBWH_Users1RowDeleting" msprop:Generator_RowChangingName="TBWH_Users1RowChanging" msprop:Generator_RowEvHandlerName="TBWH_Users1RowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_Users1RowDeleted" msprop:Generator_UserTableName="TBWH_Users1" msprop:Generator_RowChangedName="TBWH_Users1RowChanged" msprop:Generator_RowEvArgName="TBWH_Users1RowChangeEvent" msprop:Generator_RowClassName="TBWH_Users1Row">
|
||||
<xs:element name="TBWH_Users1" msprop:Generator_TableClassName="TBWH_Users1DataTable" msprop:Generator_TableVarName="tableTBWH_Users1" msprop:Generator_RowChangedName="TBWH_Users1RowChanged" msprop:Generator_TablePropName="TBWH_Users1" msprop:Generator_RowDeletingName="TBWH_Users1RowDeleting" msprop:Generator_RowChangingName="TBWH_Users1RowChanging" msprop:Generator_RowEvHandlerName="TBWH_Users1RowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_Users1RowDeleted" msprop:Generator_RowClassName="TBWH_Users1Row" msprop:Generator_UserTableName="TBWH_Users1" msprop:Generator_RowEvArgName="TBWH_Users1RowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Select" msprop:Generator_ColumnVarNameInTable="columnSelect" msprop:Generator_ColumnPropNameInRow="_Select" msprop:Generator_ColumnPropNameInTable="SelectColumn" msprop:Generator_UserColumnName="Select" type="xs:boolean" default="false" minOccurs="0" />
|
||||
@ -829,7 +871,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBWH_Users2" msprop:Generator_TableClassName="TBWH_Users2DataTable" msprop:Generator_TableVarName="tableTBWH_Users2" msprop:Generator_RowChangedName="TBWH_Users2RowChanged" msprop:Generator_TablePropName="TBWH_Users2" msprop:Generator_RowDeletingName="TBWH_Users2RowDeleting" msprop:Generator_RowChangingName="TBWH_Users2RowChanging" msprop:Generator_RowEvHandlerName="TBWH_Users2RowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_Users2RowDeleted" msprop:Generator_RowClassName="TBWH_Users2Row" msprop:Generator_UserTableName="TBWH_Users2" msprop:Generator_RowEvArgName="TBWH_Users2RowChangeEvent">
|
||||
<xs:element name="TBWH_Users2" msprop:Generator_TableClassName="TBWH_Users2DataTable" msprop:Generator_TableVarName="tableTBWH_Users2" msprop:Generator_TablePropName="TBWH_Users2" msprop:Generator_RowDeletingName="TBWH_Users2RowDeleting" msprop:Generator_RowChangingName="TBWH_Users2RowChanging" msprop:Generator_RowEvHandlerName="TBWH_Users2RowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_Users2RowDeleted" msprop:Generator_UserTableName="TBWH_Users2" msprop:Generator_RowChangedName="TBWH_Users2RowChanged" msprop:Generator_RowEvArgName="TBWH_Users2RowChangeEvent" msprop:Generator_RowClassName="TBWH_Users2Row">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Select" msprop:Generator_ColumnVarNameInTable="columnSelect" msprop:Generator_ColumnPropNameInRow="_Select" msprop:Generator_ColumnPropNameInTable="SelectColumn" msprop:Generator_UserColumnName="Select" type="xs:boolean" default="false" minOccurs="0" />
|
||||
@ -841,7 +883,7 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBPMO_SAP_FUBA" msprop:Generator_TableClassName="TBPMO_SAP_FUBADataTable" msprop:Generator_TableVarName="tableTBPMO_SAP_FUBA" msprop:Generator_RowChangedName="TBPMO_SAP_FUBARowChanged" msprop:Generator_TablePropName="TBPMO_SAP_FUBA" msprop:Generator_RowDeletingName="TBPMO_SAP_FUBARowDeleting" msprop:Generator_RowChangingName="TBPMO_SAP_FUBARowChanging" msprop:Generator_RowEvHandlerName="TBPMO_SAP_FUBARowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_SAP_FUBARowDeleted" msprop:Generator_RowClassName="TBPMO_SAP_FUBARow" msprop:Generator_UserTableName="TBPMO_SAP_FUBA" msprop:Generator_RowEvArgName="TBPMO_SAP_FUBARowChangeEvent">
|
||||
<xs:element name="TBPMO_SAP_FUBA" msprop:Generator_TableClassName="TBPMO_SAP_FUBADataTable" msprop:Generator_TableVarName="tableTBPMO_SAP_FUBA" msprop:Generator_TablePropName="TBPMO_SAP_FUBA" msprop:Generator_RowDeletingName="TBPMO_SAP_FUBARowDeleting" msprop:Generator_RowChangingName="TBPMO_SAP_FUBARowChanging" msprop:Generator_RowEvHandlerName="TBPMO_SAP_FUBARowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_SAP_FUBARowDeleted" msprop:Generator_UserTableName="TBPMO_SAP_FUBA" msprop:Generator_RowChangedName="TBPMO_SAP_FUBARowChanged" msprop:Generator_RowEvArgName="TBPMO_SAP_FUBARowChangeEvent" msprop:Generator_RowClassName="TBPMO_SAP_FUBARow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
@ -956,17 +998,11 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TBPMO_RESULTLIST_CONFIG" msprop:Generator_TableClassName="TBPMO_RESULTLIST_CONFIGDataTable" msprop:Generator_TableVarName="tableTBPMO_RESULTLIST_CONFIG" msprop:Generator_RowChangedName="TBPMO_RESULTLIST_CONFIGRowChanged" msprop:Generator_TablePropName="TBPMO_RESULTLIST_CONFIG" msprop:Generator_RowDeletingName="TBPMO_RESULTLIST_CONFIGRowDeleting" msprop:Generator_RowChangingName="TBPMO_RESULTLIST_CONFIGRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_RESULTLIST_CONFIGRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_RESULTLIST_CONFIGRowDeleted" msprop:Generator_RowClassName="TBPMO_RESULTLIST_CONFIGRow" msprop:Generator_UserTableName="TBPMO_RESULTLIST_CONFIG" msprop:Generator_RowEvArgName="TBPMO_RESULTLIST_CONFIGRowChangeEvent">
|
||||
<xs:element name="TBPMO_DOCSEARCH_RESULTLIST_CONFIG" msprop:Generator_TableClassName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGDataTable" msprop:Generator_TableVarName="tableTBPMO_DOCSEARCH_RESULTLIST_CONFIG" msprop:Generator_TablePropName="TBPMO_DOCSEARCH_RESULTLIST_CONFIG" msprop:Generator_RowDeletingName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleting" msprop:Generator_RowChangingName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanging" msprop:Generator_RowEvHandlerName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEventHandler" msprop:Generator_RowDeletedName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowDeleted" msprop:Generator_UserTableName="TBPMO_DOCSEARCH_RESULTLIST_CONFIG" msprop:Generator_RowChangedName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChanged" msprop:Generator_RowEvArgName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRowChangeEvent" msprop:Generator_RowClassName="TBPMO_DOCSEARCH_RESULTLIST_CONFIGRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||
<xs:element name="NAME" msprop:Generator_ColumnVarNameInTable="columnNAME" msprop:Generator_ColumnPropNameInRow="NAME" msprop:Generator_ColumnPropNameInTable="NAMEColumn" msprop:Generator_UserColumnName="NAME">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="100" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="ENTITY_ID" msprop:Generator_ColumnVarNameInTable="columnENTITY_ID" msprop:Generator_ColumnPropNameInRow="ENTITY_ID" msprop:Generator_ColumnPropNameInTable="ENTITY_IDColumn" msprop:Generator_UserColumnName="ENTITY_ID" type="xs:int" />
|
||||
<xs:element name="LANGUAGE" msprop:Generator_ColumnVarNameInTable="columnLANGUAGE" msprop:Generator_ColumnPropNameInRow="LANGUAGE" msprop:Generator_ColumnPropNameInTable="LANGUAGEColumn" msprop:Generator_UserColumnName="LANGUAGE">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@ -1007,7 +1043,6 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
</xs:element>
|
||||
<xs:element name="CHANGED_WHEN" msprop:Generator_ColumnVarNameInTable="columnCHANGED_WHEN" msprop:Generator_ColumnPropNameInRow="CHANGED_WHEN" msprop:Generator_ColumnPropNameInTable="CHANGED_WHENColumn" msprop:Generator_UserColumnName="CHANGED_WHEN" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="VISIBLE" msprop:Generator_ColumnVarNameInTable="columnVISIBLE" msprop:Generator_ColumnPropNameInRow="VISIBLE" msprop:Generator_ColumnPropNameInTable="VISIBLEColumn" msprop:Generator_UserColumnName="VISIBLE" type="xs:boolean" />
|
||||
<xs:element name="ENTITY_ID" msprop:Generator_ColumnVarNameInTable="columnENTITY_ID" msprop:Generator_ColumnPropNameInRow="ENTITY_ID" msprop:Generator_ColumnPropNameInTable="ENTITY_IDColumn" msprop:Generator_UserColumnName="ENTITY_ID" type="xs:int" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
@ -1041,14 +1076,14 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG INNER JOIN
|
||||
<xs:selector xpath=".//mstns:TBPMO_SAP_FUBA" />
|
||||
<xs:field xpath="mstns:GUID" />
|
||||
</xs:unique>
|
||||
<xs:unique name="TBPMO_RESULTLIST_CONFIG_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||
<xs:selector xpath=".//mstns:TBPMO_RESULTLIST_CONFIG" />
|
||||
<xs:unique name="TBPMO_DOCSEARCH_RESULTLIST_CONFIG_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||
<xs:selector xpath=".//mstns:TBPMO_DOCSEARCH_RESULTLIST_CONFIG" />
|
||||
<xs:field xpath="mstns:GUID" />
|
||||
</xs:unique>
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msdata:parent="TBPMO_FORM_CONSTRUCTOR" msdata:child="TBPMO_FORM_CONSTRUCTOR_DETAIL" msdata:parentkey="GUID" msdata:childkey="CONSTRUCT_ID" msprop:Generator_UserChildTable="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_ChildPropName="GetTBPMO_FORM_CONSTRUCTOR_DETAILRows" msprop:Generator_UserRelationName="FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msprop:Generator_RelationVarName="relationFK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msprop:Generator_UserParentTable="TBPMO_FORM_CONSTRUCTOR" msprop:Generator_ParentPropName="TBPMO_FORM_CONSTRUCTORRow" />
|
||||
<msdata:Relationship name="FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msdata:parent="TBPMO_FORM_CONSTRUCTOR" msdata:child="TBPMO_FORM_CONSTRUCTOR_DETAIL" msdata:parentkey="GUID" msdata:childkey="CONSTRUCT_ID" msprop:Generator_UserChildTable="TBPMO_FORM_CONSTRUCTOR_DETAIL" msprop:Generator_ChildPropName="GetTBPMO_FORM_CONSTRUCTOR_DETAILRows" msprop:Generator_UserRelationName="FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msprop:Generator_ParentPropName="TBPMO_FORM_CONSTRUCTORRow" msprop:Generator_RelationVarName="relationFK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" msprop:Generator_UserParentTable="TBPMO_FORM_CONSTRUCTOR" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
@ -13,11 +13,11 @@
|
||||
<Shape ID="DesignTable:TBWH_ENTITIES" ZOrder="7" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:TBWH_USER_GROUPS" ZOrder="6" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:TBPMO_SAP_FUBA" ZOrder="4" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:TBPMO_RESULTLIST_CONFIG" ZOrder="1" X="49" Y="317" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:DT_VORSCHAU" ZOrder="9" X="1342" Y="401" Height="48" Width="154" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="44" />
|
||||
<Shape ID="DesignTable:TBAD_Users" ZOrder="5" X="365" Y="384" Height="144" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
|
||||
<Shape ID="DesignTable:TBWH_Users1" ZOrder="3" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:TBWH_Users2" ZOrder="2" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||
<Shape ID="DesignTable:TBPMO_DOCSEARCH_RESULTLIST_CONFIG" ZOrder="1" X="34" Y="348" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" ZOrder="11" LineWidth="11">
|
||||
|
||||
@ -767,7 +767,7 @@ Public Class frmMain
|
||||
End Sub
|
||||
|
||||
Private Sub BarButtonItem9_ItemClick(sender As Object, e As ItemClickEventArgs) Handles BarButtonItem9.ItemClick
|
||||
Dim frm As New frmWD_ResultlistConfig()
|
||||
Dim frm As New frmWD_Resultlist_Config()
|
||||
frm.MdiParent = MAIN_FORM
|
||||
frm.Show()
|
||||
End Sub
|
||||
|
||||
@ -89,6 +89,14 @@ Public Class frmRecordView
|
||||
'Perform your actions
|
||||
End Sub
|
||||
|
||||
Private Sub OnDateSelectedValueChanged(sender As Object, e As EventArgs)
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub OnTextSelectedValueChanged(sender As Object, e As EventArgs)
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub RUN_WDSEARCH_GRID()
|
||||
Me.Cursor = Cursors.WaitCursor
|
||||
Try
|
||||
@ -111,12 +119,14 @@ Public Class frmRecordView
|
||||
tslblWindreamView.Text = msg
|
||||
|
||||
If DT_RESULT.Rows.Count > 0 Then
|
||||
ClassWindreamDocGrid.FormatColumns(
|
||||
ClassWindreamDocGrid.FillColumns(
|
||||
GridViewDoc_Search,
|
||||
DT_RESULT,
|
||||
DT_WINDREAM_RESULTLIST,
|
||||
DT_DOCRESULT_DROPDOWN_ITEMS,
|
||||
AddressOf OnCBSelectedValueChanged)
|
||||
AddressOf OnCBSelectedValueChanged,
|
||||
AddressOf OnDateSelectedValueChanged,
|
||||
AddressOf OnTextSelectedValueChanged)
|
||||
End If
|
||||
Else
|
||||
Dim msg = "Keine Windream-Dokumente für Record: " & JUMP_RECORD_ID & " gefunden"
|
||||
|
||||
@ -1,613 +0,0 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmWD_ResultlistConfig
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Wird vom Windows Form-Designer benötigt.
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Dim NAMELabel As System.Windows.Forms.Label
|
||||
Dim LANGUAGELabel As System.Windows.Forms.Label
|
||||
Dim COLUMN_VIEWLabel As System.Windows.Forms.Label
|
||||
Dim HEADER_CAPTIONLabel As System.Windows.Forms.Label
|
||||
Dim WIDTHLabel As System.Windows.Forms.Label
|
||||
Dim TYPE_IDLabel As System.Windows.Forms.Label
|
||||
Dim GUIDLabel As System.Windows.Forms.Label
|
||||
Dim ENTITY_IDLabel As System.Windows.Forms.Label
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmWD_ResultlistConfig))
|
||||
Me.gridResultlist = New DevExpress.XtraGrid.GridControl()
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||
Me.DD_ECMAdmin = New DD_Record_Organiser.DD_ECMAdmin()
|
||||
Me.grvwResultlist = New DevExpress.XtraGrid.Views.Grid.GridView()
|
||||
Me.colGUID = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colNAME = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colLANGUAGE = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCOLUMN_VIEW = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colHEADER_CAPTION = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colWIDTH = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colTYPE_ID = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colADDED_WHO = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colADDED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCHANGED_WHO = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCHANGED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colVISIBLE = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.TBPMO_RESULTLIST_CONFIGTableAdapter = New DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_RESULTLIST_CONFIGTableAdapter()
|
||||
Me.TableAdapterManager = New DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager()
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components)
|
||||
Me.BindingNavigatorAddNewItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorCountItem = New System.Windows.Forms.ToolStripLabel()
|
||||
Me.BindingNavigatorDeleteItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMoveFirstItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMovePreviousItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorSeparator = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.BindingNavigatorPositionItem = New System.Windows.Forms.ToolStripTextBox()
|
||||
Me.BindingNavigatorSeparator1 = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.BindingNavigatorMoveNextItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMoveLastItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton()
|
||||
Me.NAMETextBox = New System.Windows.Forms.TextBox()
|
||||
Me.LANGUAGEComboBox = New System.Windows.Forms.ComboBox()
|
||||
Me.COLUMN_VIEWTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.HEADER_CAPTIONTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.WIDTHTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.TYPE_IDTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.VISIBLECheckBox = New System.Windows.Forms.CheckBox()
|
||||
Me.GUIDTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
|
||||
Me.labelSuccess = New System.Windows.Forms.Label()
|
||||
Me.ENTITY_IDCombobox = New System.Windows.Forms.ComboBox()
|
||||
NAMELabel = New System.Windows.Forms.Label()
|
||||
LANGUAGELabel = New System.Windows.Forms.Label()
|
||||
COLUMN_VIEWLabel = New System.Windows.Forms.Label()
|
||||
HEADER_CAPTIONLabel = New System.Windows.Forms.Label()
|
||||
WIDTHLabel = New System.Windows.Forms.Label()
|
||||
TYPE_IDLabel = New System.Windows.Forms.Label()
|
||||
GUIDLabel = New System.Windows.Forms.Label()
|
||||
ENTITY_IDLabel = New System.Windows.Forms.Label()
|
||||
CType(Me.gridResultlist, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_RESULTLIST_CONFIGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.grvwResultlist, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_RESULTLIST_CONFIGBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.SuspendLayout()
|
||||
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SplitContainer1.Panel1.SuspendLayout()
|
||||
Me.SplitContainer1.Panel2.SuspendLayout()
|
||||
Me.SplitContainer1.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'NAMELabel
|
||||
'
|
||||
NAMELabel.AutoSize = True
|
||||
NAMELabel.Location = New System.Drawing.Point(80, 54)
|
||||
NAMELabel.Name = "NAMELabel"
|
||||
NAMELabel.Size = New System.Drawing.Size(40, 13)
|
||||
NAMELabel.TabIndex = 2
|
||||
NAMELabel.Text = "Entität:"
|
||||
'
|
||||
'LANGUAGELabel
|
||||
'
|
||||
LANGUAGELabel.AutoSize = True
|
||||
LANGUAGELabel.Location = New System.Drawing.Point(70, 107)
|
||||
LANGUAGELabel.Name = "LANGUAGELabel"
|
||||
LANGUAGELabel.Size = New System.Drawing.Size(50, 13)
|
||||
LANGUAGELabel.TabIndex = 4
|
||||
LANGUAGELabel.Text = "Sprache:"
|
||||
'
|
||||
'COLUMN_VIEWLabel
|
||||
'
|
||||
COLUMN_VIEWLabel.AutoSize = True
|
||||
COLUMN_VIEWLabel.Location = New System.Drawing.Point(52, 134)
|
||||
COLUMN_VIEWLabel.Name = "COLUMN_VIEWLabel"
|
||||
COLUMN_VIEWLabel.Size = New System.Drawing.Size(68, 13)
|
||||
COLUMN_VIEWLabel.TabIndex = 6
|
||||
COLUMN_VIEWLabel.Text = "ColumnView:"
|
||||
'
|
||||
'HEADER_CAPTIONLabel
|
||||
'
|
||||
HEADER_CAPTIONLabel.AutoSize = True
|
||||
HEADER_CAPTIONLabel.Location = New System.Drawing.Point(48, 160)
|
||||
HEADER_CAPTIONLabel.Name = "HEADER_CAPTIONLabel"
|
||||
HEADER_CAPTIONLabel.Size = New System.Drawing.Size(72, 13)
|
||||
HEADER_CAPTIONLabel.TabIndex = 8
|
||||
HEADER_CAPTIONLabel.Text = "Spaltenname:"
|
||||
'
|
||||
'WIDTHLabel
|
||||
'
|
||||
WIDTHLabel.AutoSize = True
|
||||
WIDTHLabel.Location = New System.Drawing.Point(48, 186)
|
||||
WIDTHLabel.Name = "WIDTHLabel"
|
||||
WIDTHLabel.Size = New System.Drawing.Size(72, 13)
|
||||
WIDTHLabel.TabIndex = 10
|
||||
WIDTHLabel.Text = "Spaltenbreite:"
|
||||
'
|
||||
'TYPE_IDLabel
|
||||
'
|
||||
TYPE_IDLabel.AutoSize = True
|
||||
TYPE_IDLabel.Location = New System.Drawing.Point(60, 212)
|
||||
TYPE_IDLabel.Name = "TYPE_IDLabel"
|
||||
TYPE_IDLabel.Size = New System.Drawing.Size(60, 13)
|
||||
TYPE_IDLabel.TabIndex = 12
|
||||
TYPE_IDLabel.Text = "Spaltentyp:"
|
||||
'
|
||||
'GUIDLabel
|
||||
'
|
||||
GUIDLabel.AutoSize = True
|
||||
GUIDLabel.Location = New System.Drawing.Point(83, 28)
|
||||
GUIDLabel.Name = "GUIDLabel"
|
||||
GUIDLabel.Size = New System.Drawing.Size(37, 13)
|
||||
GUIDLabel.TabIndex = 18
|
||||
GUIDLabel.Text = "GUID:"
|
||||
'
|
||||
'ENTITY_IDLabel
|
||||
'
|
||||
ENTITY_IDLabel.AutoSize = True
|
||||
ENTITY_IDLabel.Location = New System.Drawing.Point(66, 80)
|
||||
ENTITY_IDLabel.Name = "ENTITY_IDLabel"
|
||||
ENTITY_IDLabel.Size = New System.Drawing.Size(54, 13)
|
||||
ENTITY_IDLabel.TabIndex = 19
|
||||
ENTITY_IDLabel.Text = "EntitätsId:"
|
||||
'
|
||||
'gridResultlist
|
||||
'
|
||||
Me.gridResultlist.DataSource = Me.TBPMO_RESULTLIST_CONFIGBindingSource
|
||||
Me.gridResultlist.Dock = System.Windows.Forms.DockStyle.Fill
|
||||
Me.gridResultlist.Location = New System.Drawing.Point(0, 25)
|
||||
Me.gridResultlist.MainView = Me.grvwResultlist
|
||||
Me.gridResultlist.Name = "gridResultlist"
|
||||
Me.gridResultlist.Size = New System.Drawing.Size(782, 288)
|
||||
Me.gridResultlist.TabIndex = 0
|
||||
Me.gridResultlist.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwResultlist})
|
||||
'
|
||||
'TBPMO_RESULTLIST_CONFIGBindingSource
|
||||
'
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingSource.DataMember = "TBPMO_RESULTLIST_CONFIG"
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingSource.DataSource = Me.DD_ECMAdmin
|
||||
'
|
||||
'DD_ECMAdmin
|
||||
'
|
||||
Me.DD_ECMAdmin.DataSetName = "DD_ECMAdmin"
|
||||
Me.DD_ECMAdmin.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
|
||||
'
|
||||
'grvwResultlist
|
||||
'
|
||||
Me.grvwResultlist.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colNAME, Me.colLANGUAGE, Me.colCOLUMN_VIEW, Me.colHEADER_CAPTION, Me.colWIDTH, Me.colTYPE_ID, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN, Me.colVISIBLE})
|
||||
Me.grvwResultlist.GridControl = Me.gridResultlist
|
||||
Me.grvwResultlist.Name = "grvwResultlist"
|
||||
Me.grvwResultlist.OptionsBehavior.Editable = False
|
||||
'
|
||||
'colGUID
|
||||
'
|
||||
Me.colGUID.FieldName = "GUID"
|
||||
Me.colGUID.Name = "colGUID"
|
||||
Me.colGUID.Visible = True
|
||||
Me.colGUID.VisibleIndex = 0
|
||||
'
|
||||
'colNAME
|
||||
'
|
||||
Me.colNAME.Caption = "Entität"
|
||||
Me.colNAME.FieldName = "NAME"
|
||||
Me.colNAME.Name = "colNAME"
|
||||
Me.colNAME.Visible = True
|
||||
Me.colNAME.VisibleIndex = 1
|
||||
'
|
||||
'colLANGUAGE
|
||||
'
|
||||
Me.colLANGUAGE.Caption = "Sprache"
|
||||
Me.colLANGUAGE.FieldName = "LANGUAGE"
|
||||
Me.colLANGUAGE.Name = "colLANGUAGE"
|
||||
Me.colLANGUAGE.Visible = True
|
||||
Me.colLANGUAGE.VisibleIndex = 2
|
||||
'
|
||||
'colCOLUMN_VIEW
|
||||
'
|
||||
Me.colCOLUMN_VIEW.FieldName = "COLUMN_VIEW"
|
||||
Me.colCOLUMN_VIEW.Name = "colCOLUMN_VIEW"
|
||||
Me.colCOLUMN_VIEW.Visible = True
|
||||
Me.colCOLUMN_VIEW.VisibleIndex = 3
|
||||
'
|
||||
'colHEADER_CAPTION
|
||||
'
|
||||
Me.colHEADER_CAPTION.Caption = "Spaltenname"
|
||||
Me.colHEADER_CAPTION.FieldName = "HEADER_CAPTION"
|
||||
Me.colHEADER_CAPTION.Name = "colHEADER_CAPTION"
|
||||
Me.colHEADER_CAPTION.Visible = True
|
||||
Me.colHEADER_CAPTION.VisibleIndex = 4
|
||||
'
|
||||
'colWIDTH
|
||||
'
|
||||
Me.colWIDTH.Caption = "Spaltenbreite"
|
||||
Me.colWIDTH.FieldName = "WIDTH"
|
||||
Me.colWIDTH.Name = "colWIDTH"
|
||||
Me.colWIDTH.Visible = True
|
||||
Me.colWIDTH.VisibleIndex = 5
|
||||
'
|
||||
'colTYPE_ID
|
||||
'
|
||||
Me.colTYPE_ID.Caption = "Spaltentyp"
|
||||
Me.colTYPE_ID.FieldName = "TYPE_ID"
|
||||
Me.colTYPE_ID.Name = "colTYPE_ID"
|
||||
Me.colTYPE_ID.Visible = True
|
||||
Me.colTYPE_ID.VisibleIndex = 6
|
||||
'
|
||||
'colADDED_WHO
|
||||
'
|
||||
Me.colADDED_WHO.FieldName = "ADDED_WHO"
|
||||
Me.colADDED_WHO.Name = "colADDED_WHO"
|
||||
Me.colADDED_WHO.Visible = True
|
||||
Me.colADDED_WHO.VisibleIndex = 7
|
||||
'
|
||||
'colADDED_WHEN
|
||||
'
|
||||
Me.colADDED_WHEN.FieldName = "ADDED_WHEN"
|
||||
Me.colADDED_WHEN.Name = "colADDED_WHEN"
|
||||
Me.colADDED_WHEN.Visible = True
|
||||
Me.colADDED_WHEN.VisibleIndex = 8
|
||||
'
|
||||
'colCHANGED_WHO
|
||||
'
|
||||
Me.colCHANGED_WHO.FieldName = "CHANGED_WHO"
|
||||
Me.colCHANGED_WHO.Name = "colCHANGED_WHO"
|
||||
Me.colCHANGED_WHO.Visible = True
|
||||
Me.colCHANGED_WHO.VisibleIndex = 9
|
||||
'
|
||||
'colCHANGED_WHEN
|
||||
'
|
||||
Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN"
|
||||
Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN"
|
||||
Me.colCHANGED_WHEN.Visible = True
|
||||
Me.colCHANGED_WHEN.VisibleIndex = 10
|
||||
'
|
||||
'colVISIBLE
|
||||
'
|
||||
Me.colVISIBLE.FieldName = "VISIBLE"
|
||||
Me.colVISIBLE.Name = "colVISIBLE"
|
||||
Me.colVISIBLE.Visible = True
|
||||
Me.colVISIBLE.VisibleIndex = 11
|
||||
'
|
||||
'TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
'
|
||||
Me.TBPMO_RESULTLIST_CONFIGTableAdapter.ClearBeforeFill = True
|
||||
'
|
||||
'TableAdapterManager
|
||||
'
|
||||
Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
|
||||
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_FORM_CONSTRUCTOR_DETAILTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_FORM_CONSTRUCTORTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_RESULTLIST_CONFIGTableAdapter = Me.TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Me.TableAdapterManager.TBPMO_SAP_FUBATableAdapter = Nothing
|
||||
Me.TableAdapterManager.UpdateOrder = DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
|
||||
'
|
||||
'TBPMO_RESULTLIST_CONFIGBindingNavigator
|
||||
'
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.BindingSource = Me.TBPMO_RESULTLIST_CONFIGBindingSource
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.CountItem = Me.BindingNavigatorCountItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem, Me.ToolStripButton1})
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.Location = New System.Drawing.Point(0, 0)
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.Name = "TBPMO_RESULTLIST_CONFIGBindingNavigator"
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.Size = New System.Drawing.Size(782, 25)
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.TabIndex = 1
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.Text = "BindingNavigator1"
|
||||
'
|
||||
'BindingNavigatorAddNewItem
|
||||
'
|
||||
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
|
||||
Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorAddNewItem.Text = "Neu hinzufügen"
|
||||
'
|
||||
'BindingNavigatorCountItem
|
||||
'
|
||||
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
|
||||
Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(44, 22)
|
||||
Me.BindingNavigatorCountItem.Text = "von {0}"
|
||||
Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
|
||||
'
|
||||
'BindingNavigatorDeleteItem
|
||||
'
|
||||
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
|
||||
Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorDeleteItem.Text = "Löschen"
|
||||
'
|
||||
'BindingNavigatorMoveFirstItem
|
||||
'
|
||||
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
|
||||
Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
|
||||
'
|
||||
'BindingNavigatorMovePreviousItem
|
||||
'
|
||||
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
|
||||
Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
|
||||
'
|
||||
'BindingNavigatorSeparator
|
||||
'
|
||||
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
|
||||
Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'BindingNavigatorPositionItem
|
||||
'
|
||||
Me.BindingNavigatorPositionItem.AccessibleName = "Position"
|
||||
Me.BindingNavigatorPositionItem.AutoSize = False
|
||||
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
|
||||
Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
|
||||
Me.BindingNavigatorPositionItem.Text = "0"
|
||||
Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
|
||||
'
|
||||
'BindingNavigatorSeparator1
|
||||
'
|
||||
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
|
||||
Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'BindingNavigatorMoveNextItem
|
||||
'
|
||||
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
|
||||
Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
|
||||
'
|
||||
'BindingNavigatorMoveLastItem
|
||||
'
|
||||
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
|
||||
Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
|
||||
'
|
||||
'BindingNavigatorSeparator2
|
||||
'
|
||||
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
|
||||
Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem
|
||||
'
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image = CType(resources.GetObject("TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image"), System.Drawing.Image)
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Name = "TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem"
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Text = "Daten speichern"
|
||||
'
|
||||
'ToolStripButton1
|
||||
'
|
||||
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.ToolStripButton1.Image = Global.DD_Record_Organiser.My.Resources.Resources._112_RefreshArrow_Blue_24x24_72
|
||||
Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
|
||||
Me.ToolStripButton1.Name = "ToolStripButton1"
|
||||
Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22)
|
||||
Me.ToolStripButton1.Text = "ToolStripButton1"
|
||||
'
|
||||
'NAMETextBox
|
||||
'
|
||||
Me.NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "NAME", True))
|
||||
Me.NAMETextBox.Location = New System.Drawing.Point(133, 51)
|
||||
Me.NAMETextBox.Name = "NAMETextBox"
|
||||
Me.NAMETextBox.ReadOnly = True
|
||||
Me.NAMETextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.NAMETextBox.TabIndex = 3
|
||||
'
|
||||
'LANGUAGEComboBox
|
||||
'
|
||||
Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "LANGUAGE", True))
|
||||
Me.LANGUAGEComboBox.FormattingEnabled = True
|
||||
Me.LANGUAGEComboBox.Items.AddRange(New Object() {"de-DE", "en-US"})
|
||||
Me.LANGUAGEComboBox.Location = New System.Drawing.Point(133, 104)
|
||||
Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox"
|
||||
Me.LANGUAGEComboBox.Size = New System.Drawing.Size(209, 21)
|
||||
Me.LANGUAGEComboBox.TabIndex = 5
|
||||
'
|
||||
'COLUMN_VIEWTextBox
|
||||
'
|
||||
Me.COLUMN_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "COLUMN_VIEW", True))
|
||||
Me.COLUMN_VIEWTextBox.Location = New System.Drawing.Point(133, 131)
|
||||
Me.COLUMN_VIEWTextBox.Name = "COLUMN_VIEWTextBox"
|
||||
Me.COLUMN_VIEWTextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.COLUMN_VIEWTextBox.TabIndex = 7
|
||||
'
|
||||
'HEADER_CAPTIONTextBox
|
||||
'
|
||||
Me.HEADER_CAPTIONTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "HEADER_CAPTION", True))
|
||||
Me.HEADER_CAPTIONTextBox.Location = New System.Drawing.Point(133, 157)
|
||||
Me.HEADER_CAPTIONTextBox.Name = "HEADER_CAPTIONTextBox"
|
||||
Me.HEADER_CAPTIONTextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.HEADER_CAPTIONTextBox.TabIndex = 9
|
||||
'
|
||||
'WIDTHTextBox
|
||||
'
|
||||
Me.WIDTHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "WIDTH", True))
|
||||
Me.WIDTHTextBox.Location = New System.Drawing.Point(133, 183)
|
||||
Me.WIDTHTextBox.Name = "WIDTHTextBox"
|
||||
Me.WIDTHTextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.WIDTHTextBox.TabIndex = 11
|
||||
'
|
||||
'TYPE_IDTextBox
|
||||
'
|
||||
Me.TYPE_IDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "TYPE_ID", True))
|
||||
Me.TYPE_IDTextBox.Location = New System.Drawing.Point(133, 209)
|
||||
Me.TYPE_IDTextBox.Name = "TYPE_IDTextBox"
|
||||
Me.TYPE_IDTextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.TYPE_IDTextBox.TabIndex = 13
|
||||
'
|
||||
'VISIBLECheckBox
|
||||
'
|
||||
Me.VISIBLECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "VISIBLE", True))
|
||||
Me.VISIBLECheckBox.Location = New System.Drawing.Point(133, 235)
|
||||
Me.VISIBLECheckBox.Name = "VISIBLECheckBox"
|
||||
Me.VISIBLECheckBox.Size = New System.Drawing.Size(192, 24)
|
||||
Me.VISIBLECheckBox.TabIndex = 17
|
||||
Me.VISIBLECheckBox.Text = "Spalte sichtbar"
|
||||
Me.VISIBLECheckBox.UseVisualStyleBackColor = True
|
||||
'
|
||||
'GUIDTextBox
|
||||
'
|
||||
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_RESULTLIST_CONFIGBindingSource, "GUID", True))
|
||||
Me.GUIDTextBox.Location = New System.Drawing.Point(133, 25)
|
||||
Me.GUIDTextBox.Name = "GUIDTextBox"
|
||||
Me.GUIDTextBox.ReadOnly = True
|
||||
Me.GUIDTextBox.Size = New System.Drawing.Size(209, 20)
|
||||
Me.GUIDTextBox.TabIndex = 19
|
||||
'
|
||||
'SplitContainer1
|
||||
'
|
||||
Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
|
||||
Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
|
||||
Me.SplitContainer1.Name = "SplitContainer1"
|
||||
Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
|
||||
'
|
||||
'SplitContainer1.Panel1
|
||||
'
|
||||
Me.SplitContainer1.Panel1.Controls.Add(Me.gridResultlist)
|
||||
Me.SplitContainer1.Panel1.Controls.Add(Me.TBPMO_RESULTLIST_CONFIGBindingNavigator)
|
||||
'
|
||||
'SplitContainer1.Panel2
|
||||
'
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.labelSuccess)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.ENTITY_IDCombobox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(ENTITY_IDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(GUIDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.NAMETextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.GUIDTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(NAMELabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.LANGUAGEComboBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.VISIBLECheckBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(LANGUAGELabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.COLUMN_VIEWTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(COLUMN_VIEWLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(TYPE_IDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.HEADER_CAPTIONTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.TYPE_IDTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(HEADER_CAPTIONLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(WIDTHLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.WIDTHTextBox)
|
||||
Me.SplitContainer1.Size = New System.Drawing.Size(782, 627)
|
||||
Me.SplitContainer1.SplitterDistance = 313
|
||||
Me.SplitContainer1.TabIndex = 20
|
||||
'
|
||||
'labelSuccess
|
||||
'
|
||||
Me.labelSuccess.AutoSize = True
|
||||
Me.labelSuccess.BackColor = System.Drawing.Color.Yellow
|
||||
Me.labelSuccess.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.labelSuccess.Location = New System.Drawing.Point(130, 272)
|
||||
Me.labelSuccess.Name = "labelSuccess"
|
||||
Me.labelSuccess.Size = New System.Drawing.Size(183, 16)
|
||||
Me.labelSuccess.TabIndex = 21
|
||||
Me.labelSuccess.Text = "Änderungen gespeichert!"
|
||||
'
|
||||
'ENTITY_IDCombobox
|
||||
'
|
||||
Me.ENTITY_IDCombobox.FormattingEnabled = True
|
||||
Me.ENTITY_IDCombobox.Location = New System.Drawing.Point(133, 77)
|
||||
Me.ENTITY_IDCombobox.Name = "ENTITY_IDCombobox"
|
||||
Me.ENTITY_IDCombobox.Size = New System.Drawing.Size(209, 21)
|
||||
Me.ENTITY_IDCombobox.TabIndex = 20
|
||||
'
|
||||
'frmWD_ResultlistConfig
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(782, 627)
|
||||
Me.Controls.Add(Me.SplitContainer1)
|
||||
Me.Name = "frmWD_ResultlistConfig"
|
||||
Me.Text = "frmWDResultlistConfig"
|
||||
CType(Me.gridResultlist, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_RESULTLIST_CONFIGBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.grvwResultlist, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_RESULTLIST_CONFIGBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.ResumeLayout(False)
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingNavigator.PerformLayout()
|
||||
Me.SplitContainer1.Panel1.ResumeLayout(False)
|
||||
Me.SplitContainer1.Panel1.PerformLayout()
|
||||
Me.SplitContainer1.Panel2.ResumeLayout(False)
|
||||
Me.SplitContainer1.Panel2.PerformLayout()
|
||||
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.SplitContainer1.ResumeLayout(False)
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
Friend WithEvents gridResultlist As DevExpress.XtraGrid.GridControl
|
||||
Friend WithEvents grvwResultlist As DevExpress.XtraGrid.Views.Grid.GridView
|
||||
Friend WithEvents DD_ECMAdmin As DD_Record_Organiser.DD_ECMAdmin
|
||||
Friend WithEvents TBPMO_RESULTLIST_CONFIGBindingSource As System.Windows.Forms.BindingSource
|
||||
Friend WithEvents TBPMO_RESULTLIST_CONFIGTableAdapter As DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_RESULTLIST_CONFIGTableAdapter
|
||||
Friend WithEvents TableAdapterManager As DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager
|
||||
Friend WithEvents TBPMO_RESULTLIST_CONFIGBindingNavigator As System.Windows.Forms.BindingNavigator
|
||||
Friend WithEvents BindingNavigatorAddNewItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorCountItem As System.Windows.Forms.ToolStripLabel
|
||||
Friend WithEvents BindingNavigatorDeleteItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMoveFirstItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMovePreviousItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorSeparator As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents BindingNavigatorPositionItem As System.Windows.Forms.ToolStripTextBox
|
||||
Friend WithEvents BindingNavigatorSeparator1 As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents BindingNavigatorMoveNextItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMoveLastItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorSeparator2 As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents colGUID As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colLANGUAGE As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCOLUMN_VIEW As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colHEADER_CAPTION As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colWIDTH As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colTYPE_ID As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colADDED_WHO As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colADDED_WHEN As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCHANGED_WHO As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCHANGED_WHEN As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colVISIBLE As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents NAMETextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents LANGUAGEComboBox As System.Windows.Forms.ComboBox
|
||||
Friend WithEvents COLUMN_VIEWTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents HEADER_CAPTIONTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents WIDTHTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents TYPE_IDTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents VISIBLECheckBox As System.Windows.Forms.CheckBox
|
||||
Friend WithEvents GUIDTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents SplitContainer1 As System.Windows.Forms.SplitContainer
|
||||
Friend WithEvents ENTITY_IDCombobox As System.Windows.Forms.ComboBox
|
||||
Friend WithEvents ToolStripButton1 As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents labelSuccess As System.Windows.Forms.Label
|
||||
End Class
|
||||
@ -1,102 +0,0 @@
|
||||
Imports DevExpress.XtraEditors.Repository
|
||||
Imports DevExpress.XtraGrid.Columns
|
||||
Imports DevExpress.XtraGrid
|
||||
|
||||
Public Class frmWD_ResultlistConfig
|
||||
Private IS_INSERT As Boolean = False
|
||||
|
||||
Private Sub frmWDResultlistConfig_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
LoadResultlistConfig()
|
||||
End Sub
|
||||
|
||||
Private Sub LoadResultlistConfig()
|
||||
TBPMO_RESULTLIST_CONFIGTableAdapter.Connection.ConnectionString = MyConnectionString
|
||||
Me.TBPMO_RESULTLIST_CONFIGTableAdapter.Fill(Me.DD_ECMAdmin.TBPMO_RESULTLIST_CONFIG)
|
||||
|
||||
grvwResultlist.Columns.Item("NAME").GroupIndex = 0
|
||||
grvwResultlist.Columns.Item("LANGUAGE").GroupIndex = 1
|
||||
|
||||
grvwResultlist.Columns.Item("ADDED_WHO").Visible = False
|
||||
grvwResultlist.Columns.Item("ADDED_WHEN").Visible = False
|
||||
grvwResultlist.Columns.Item("CHANGED_WHO").Visible = False
|
||||
grvwResultlist.Columns.Item("CHANGED_WHEN").Visible = False
|
||||
|
||||
ENTITY_IDCombobox.DataSource = LoadEntityNames()
|
||||
ENTITY_IDCombobox.DisplayMember = "NAME"
|
||||
ENTITY_IDCombobox.ValueMember = "GUID"
|
||||
End Sub
|
||||
|
||||
Private Function LoadEntityNames() As DataTable
|
||||
Try
|
||||
Dim SQL As String = "SELECT GUID, NAME FROM TBPMO_FORM"
|
||||
Dim dt As DataTable = ClassDatabase.Return_Datatable(SQL, "LoadEntityNames")
|
||||
Return dt
|
||||
Catch ex As Exception
|
||||
Return Nothing
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Public Sub LockControls()
|
||||
IS_INSERT = True
|
||||
gridResultlist.Enabled = False
|
||||
NAMETextBox.ReadOnly = False
|
||||
End Sub
|
||||
|
||||
Public Sub UnlockControls()
|
||||
IS_INSERT = False
|
||||
gridResultlist.Enabled = True
|
||||
NAMETextBox.ReadOnly = True
|
||||
End Sub
|
||||
|
||||
Private Sub TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Handles TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Click
|
||||
Try
|
||||
Me.Validate()
|
||||
NAMETextBox.Text = ENTITY_IDCombobox.Text
|
||||
Me.TBPMO_RESULTLIST_CONFIGBindingSource.EndEdit()
|
||||
If Me.DD_ECMAdmin.TBPMO_RESULTLIST_CONFIG.GetChanges Is Nothing = False Then
|
||||
Dim GUID = Integer.Parse(GUIDTextBox.Text)
|
||||
Dim LANGUAGE = LANGUAGEComboBox.Text
|
||||
Dim COLUMN_VIEW = COLUMN_VIEWTextBox.Text
|
||||
Dim HEADER_CAPTION = HEADER_CAPTIONTextBox.Text
|
||||
Dim WIDTH = Integer.Parse(WIDTHTextBox.Text)
|
||||
Dim TYPE_ID = Integer.Parse(TYPE_IDTextBox.Text)
|
||||
Dim CHANGED_WHO = Environment.UserName
|
||||
Dim ADDED_WHO = Environment.UserName
|
||||
Dim ENTITY_ID = ENTITY_IDCombobox.SelectedValue
|
||||
Dim VISIBLE = IIf(VISIBLECheckBox.Checked = True, 1, 0)
|
||||
|
||||
If IS_INSERT Then
|
||||
Dim SQL As String = String.Format(
|
||||
"INSERT INTO [TBPMO_DOCSEARCH_RESULTLIST_CONFIG] (ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, VISIBLE) VALUES ({0}, '{1}', '{2}', '{3}', {4}, {5}, '{6}', {7})",
|
||||
ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, VISIBLE)
|
||||
ClassDatabase.Execute_non_Query(SQL)
|
||||
Else
|
||||
Dim SQL As String = String.Format(
|
||||
"UPDATE [TBPMO_DOCSEARCH_RESULTLIST_CONFIG] SET LANGUAGE = '{0}', COLUMN_VIEW = '{1}', HEADER_CAPTION = '{2}', WIDTH = {3}, TYPE_ID = {4}, CHANGED_WHO = '{5}', VISIBLE = {6}, ENTITY_ID = {7} WHERE GUID = {8}",
|
||||
LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, CHANGED_WHO, VISIBLE, ENTITY_ID, GUID)
|
||||
ClassDatabase.Execute_non_Query(SQL)
|
||||
End If
|
||||
|
||||
UnlockControls()
|
||||
|
||||
labelSuccess.Visible = True
|
||||
Else
|
||||
MsgBox("no changes")
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox("Error in TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem_Click: " & vbNewLine & ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub BindingNavigatorAddNewItem_Click(sender As Object, e As EventArgs) Handles BindingNavigatorAddNewItem.Click
|
||||
LockControls()
|
||||
End Sub
|
||||
|
||||
Private Sub ToolStripButton1_Click(sender As Object, e As EventArgs) Handles ToolStripButton1.Click
|
||||
LoadResultlistConfig()
|
||||
End Sub
|
||||
|
||||
Private Sub grvwResultlist_FocusedRowChanged(sender As Object, e As Views.Base.FocusedRowChangedEventArgs) Handles grvwResultlist.FocusedRowChanged
|
||||
labelSuccess.Visible = False
|
||||
End Sub
|
||||
End Class
|
||||
823
app/DD-Record-Organiser/frmWD_Resultlist_Config.Designer.vb
generated
Normal file
823
app/DD-Record-Organiser/frmWD_Resultlist_Config.Designer.vb
generated
Normal file
@ -0,0 +1,823 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frmWD_Resultlist_Config
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Wird vom Windows Form-Designer benötigt.
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Dim GUIDLabel As System.Windows.Forms.Label
|
||||
Dim ENTITY_IDLabel As System.Windows.Forms.Label
|
||||
Dim COLUMN_VIEWLabel As System.Windows.Forms.Label
|
||||
Dim HEADER_CAPTIONLabel As System.Windows.Forms.Label
|
||||
Dim WIDTHLabel As System.Windows.Forms.Label
|
||||
Dim TYPE_IDLabel As System.Windows.Forms.Label
|
||||
Dim LANGUAGELabel1 As System.Windows.Forms.Label
|
||||
Dim CHANGED_WHENLabel As System.Windows.Forms.Label
|
||||
Dim CHANGED_WHOLabel As System.Windows.Forms.Label
|
||||
Dim ADDED_WHENLabel As System.Windows.Forms.Label
|
||||
Dim ADDED_WHOLabel As System.Windows.Forms.Label
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmWD_Resultlist_Config))
|
||||
Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
|
||||
Me.GridMain = New DevExpress.XtraGrid.GridControl()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||
Me.DD_ECMAdmin = New DD_Record_Organiser.DD_ECMAdmin()
|
||||
Me.grvwMain = New DevExpress.XtraGrid.Views.Grid.GridView()
|
||||
Me.colGUID = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colENTITY_ID = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colLANGUAGE = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCOLUMN_VIEW = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colHEADER_CAPTION = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colWIDTH = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colTYPE_ID = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colADDED_WHO = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colADDED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCHANGED_WHO = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colCHANGED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colVISIBLE = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.colNAME = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
|
||||
Me.Label4 = New System.Windows.Forms.Label()
|
||||
Me.Label3 = New System.Windows.Forms.Label()
|
||||
Me.Label2 = New System.Windows.Forms.Label()
|
||||
Me.Label1 = New System.Windows.Forms.Label()
|
||||
Me.labelSuccess = New System.Windows.Forms.Label()
|
||||
Me.TYPE_IDComboBox = New System.Windows.Forms.ComboBox()
|
||||
Me.LANGUAGEComboBox = New System.Windows.Forms.ComboBox()
|
||||
Me.ComboBox1 = New System.Windows.Forms.ComboBox()
|
||||
Me.TBWH_ENTITYBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||
Me.DD_DMSDataSet = New DD_Record_Organiser.DD_DMSDataSet()
|
||||
Me.GUIDTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.COLUMN_VIEWTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.HEADER_CAPTIONTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.WIDTHTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.ADDED_WHOTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.ADDED_WHENTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.CHANGED_WHOTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.CHANGED_WHENTextBox = New System.Windows.Forms.TextBox()
|
||||
Me.VISIBLECheckBox = New System.Windows.Forms.CheckBox()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter = New DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter()
|
||||
Me.TableAdapterManager = New DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator = New System.Windows.Forms.BindingNavigator(Me.components)
|
||||
Me.BindingNavigatorAddNewItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorCountItem = New System.Windows.Forms.ToolStripLabel()
|
||||
Me.BindingNavigatorDeleteItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMoveFirstItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMovePreviousItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorSeparator = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.BindingNavigatorPositionItem = New System.Windows.Forms.ToolStripTextBox()
|
||||
Me.BindingNavigatorSeparator1 = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.BindingNavigatorMoveNextItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorMoveLastItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem = New System.Windows.Forms.ToolStripButton()
|
||||
Me.TBWH_ENTITYTableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBWH_ENTITYTableAdapter()
|
||||
Me.TableAdapterManager1 = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager()
|
||||
GUIDLabel = New System.Windows.Forms.Label()
|
||||
ENTITY_IDLabel = New System.Windows.Forms.Label()
|
||||
COLUMN_VIEWLabel = New System.Windows.Forms.Label()
|
||||
HEADER_CAPTIONLabel = New System.Windows.Forms.Label()
|
||||
WIDTHLabel = New System.Windows.Forms.Label()
|
||||
TYPE_IDLabel = New System.Windows.Forms.Label()
|
||||
LANGUAGELabel1 = New System.Windows.Forms.Label()
|
||||
CHANGED_WHENLabel = New System.Windows.Forms.Label()
|
||||
CHANGED_WHOLabel = New System.Windows.Forms.Label()
|
||||
ADDED_WHENLabel = New System.Windows.Forms.Label()
|
||||
ADDED_WHOLabel = New System.Windows.Forms.Label()
|
||||
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SplitContainer1.Panel1.SuspendLayout()
|
||||
Me.SplitContainer1.Panel2.SuspendLayout()
|
||||
Me.SplitContainer1.SuspendLayout()
|
||||
CType(Me.GridMain, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.grvwMain, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.GroupBox1.SuspendLayout()
|
||||
CType(Me.TBWH_ENTITYBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.DD_DMSDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
CType(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'GUIDLabel
|
||||
'
|
||||
GUIDLabel.AutoSize = True
|
||||
GUIDLabel.Location = New System.Drawing.Point(12, 19)
|
||||
GUIDLabel.Name = "GUIDLabel"
|
||||
GUIDLabel.Size = New System.Drawing.Size(37, 13)
|
||||
GUIDLabel.TabIndex = 0
|
||||
GUIDLabel.Text = "GUID:"
|
||||
'
|
||||
'ENTITY_IDLabel
|
||||
'
|
||||
ENTITY_IDLabel.AutoSize = True
|
||||
ENTITY_IDLabel.Location = New System.Drawing.Point(12, 45)
|
||||
ENTITY_IDLabel.Name = "ENTITY_IDLabel"
|
||||
ENTITY_IDLabel.Size = New System.Drawing.Size(40, 13)
|
||||
ENTITY_IDLabel.TabIndex = 2
|
||||
ENTITY_IDLabel.Text = "Entität:"
|
||||
'
|
||||
'COLUMN_VIEWLabel
|
||||
'
|
||||
COLUMN_VIEWLabel.AutoSize = True
|
||||
COLUMN_VIEWLabel.Location = New System.Drawing.Point(12, 97)
|
||||
COLUMN_VIEWLabel.Name = "COLUMN_VIEWLabel"
|
||||
COLUMN_VIEWLabel.Size = New System.Drawing.Size(87, 13)
|
||||
COLUMN_VIEWLabel.TabIndex = 6
|
||||
COLUMN_VIEWLabel.Text = "COLUMN VIEW:"
|
||||
'
|
||||
'HEADER_CAPTIONLabel
|
||||
'
|
||||
HEADER_CAPTIONLabel.AutoSize = True
|
||||
HEADER_CAPTIONLabel.Location = New System.Drawing.Point(12, 123)
|
||||
HEADER_CAPTIONLabel.Name = "HEADER_CAPTIONLabel"
|
||||
HEADER_CAPTIONLabel.Size = New System.Drawing.Size(72, 13)
|
||||
HEADER_CAPTIONLabel.TabIndex = 8
|
||||
HEADER_CAPTIONLabel.Text = "Spaltenname:"
|
||||
'
|
||||
'WIDTHLabel
|
||||
'
|
||||
WIDTHLabel.AutoSize = True
|
||||
WIDTHLabel.Location = New System.Drawing.Point(12, 149)
|
||||
WIDTHLabel.Name = "WIDTHLabel"
|
||||
WIDTHLabel.Size = New System.Drawing.Size(72, 13)
|
||||
WIDTHLabel.TabIndex = 10
|
||||
WIDTHLabel.Text = "Spaltenbreite:"
|
||||
'
|
||||
'TYPE_IDLabel
|
||||
'
|
||||
TYPE_IDLabel.AutoSize = True
|
||||
TYPE_IDLabel.Location = New System.Drawing.Point(12, 175)
|
||||
TYPE_IDLabel.Name = "TYPE_IDLabel"
|
||||
TYPE_IDLabel.Size = New System.Drawing.Size(60, 13)
|
||||
TYPE_IDLabel.TabIndex = 12
|
||||
TYPE_IDLabel.Text = "Spaltentyp:"
|
||||
'
|
||||
'LANGUAGELabel1
|
||||
'
|
||||
LANGUAGELabel1.AutoSize = True
|
||||
LANGUAGELabel1.Location = New System.Drawing.Point(12, 70)
|
||||
LANGUAGELabel1.Name = "LANGUAGELabel1"
|
||||
LANGUAGELabel1.Size = New System.Drawing.Size(50, 13)
|
||||
LANGUAGELabel1.TabIndex = 25
|
||||
LANGUAGELabel1.Text = "Sprache:"
|
||||
'
|
||||
'CHANGED_WHENLabel
|
||||
'
|
||||
CHANGED_WHENLabel.AutoSize = True
|
||||
CHANGED_WHENLabel.Location = New System.Drawing.Point(12, 310)
|
||||
CHANGED_WHENLabel.Name = "CHANGED_WHENLabel"
|
||||
CHANGED_WHENLabel.Size = New System.Drawing.Size(100, 13)
|
||||
CHANGED_WHENLabel.TabIndex = 20
|
||||
CHANGED_WHENLabel.Text = "CHANGED WHEN:"
|
||||
'
|
||||
'CHANGED_WHOLabel
|
||||
'
|
||||
CHANGED_WHOLabel.AutoSize = True
|
||||
CHANGED_WHOLabel.Location = New System.Drawing.Point(12, 284)
|
||||
CHANGED_WHOLabel.Name = "CHANGED_WHOLabel"
|
||||
CHANGED_WHOLabel.Size = New System.Drawing.Size(93, 13)
|
||||
CHANGED_WHOLabel.TabIndex = 18
|
||||
CHANGED_WHOLabel.Text = "CHANGED WHO:"
|
||||
'
|
||||
'ADDED_WHENLabel
|
||||
'
|
||||
ADDED_WHENLabel.AutoSize = True
|
||||
ADDED_WHENLabel.Location = New System.Drawing.Point(12, 258)
|
||||
ADDED_WHENLabel.Name = "ADDED_WHENLabel"
|
||||
ADDED_WHENLabel.Size = New System.Drawing.Size(85, 13)
|
||||
ADDED_WHENLabel.TabIndex = 16
|
||||
ADDED_WHENLabel.Text = "ADDED WHEN:"
|
||||
'
|
||||
'ADDED_WHOLabel
|
||||
'
|
||||
ADDED_WHOLabel.AutoSize = True
|
||||
ADDED_WHOLabel.Location = New System.Drawing.Point(12, 232)
|
||||
ADDED_WHOLabel.Name = "ADDED_WHOLabel"
|
||||
ADDED_WHOLabel.Size = New System.Drawing.Size(78, 13)
|
||||
ADDED_WHOLabel.TabIndex = 14
|
||||
ADDED_WHOLabel.Text = "ADDED WHO:"
|
||||
'
|
||||
'SplitContainer1
|
||||
'
|
||||
Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
|
||||
Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
|
||||
Me.SplitContainer1.Name = "SplitContainer1"
|
||||
Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
|
||||
'
|
||||
'SplitContainer1.Panel1
|
||||
'
|
||||
Me.SplitContainer1.Panel1.Controls.Add(Me.GridMain)
|
||||
'
|
||||
'SplitContainer1.Panel2
|
||||
'
|
||||
Me.SplitContainer1.Panel2.AutoScroll = True
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.GroupBox1)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.labelSuccess)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.TYPE_IDComboBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(LANGUAGELabel1)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.LANGUAGEComboBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.ComboBox1)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(GUIDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.GUIDTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(ENTITY_IDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(COLUMN_VIEWLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.COLUMN_VIEWTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(HEADER_CAPTIONLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.HEADER_CAPTIONTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(WIDTHLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.WIDTHTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(TYPE_IDLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(ADDED_WHOLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.ADDED_WHOTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(ADDED_WHENLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.ADDED_WHENTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(CHANGED_WHOLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.CHANGED_WHOTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(CHANGED_WHENLabel)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.CHANGED_WHENTextBox)
|
||||
Me.SplitContainer1.Panel2.Controls.Add(Me.VISIBLECheckBox)
|
||||
Me.SplitContainer1.Size = New System.Drawing.Size(864, 693)
|
||||
Me.SplitContainer1.SplitterDistance = 308
|
||||
Me.SplitContainer1.TabIndex = 0
|
||||
'
|
||||
'GridMain
|
||||
'
|
||||
Me.GridMain.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.GridMain.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
|
||||
Me.GridMain.Location = New System.Drawing.Point(0, 28)
|
||||
Me.GridMain.MainView = Me.grvwMain
|
||||
Me.GridMain.Name = "GridMain"
|
||||
Me.GridMain.Size = New System.Drawing.Size(864, 280)
|
||||
Me.GridMain.TabIndex = 0
|
||||
Me.GridMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwMain})
|
||||
'
|
||||
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
|
||||
'
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.DataMember = "TBPMO_DOCSEARCH_RESULTLIST_CONFIG"
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.DataSource = Me.DD_ECMAdmin
|
||||
'
|
||||
'DD_ECMAdmin
|
||||
'
|
||||
Me.DD_ECMAdmin.DataSetName = "DD_ECMAdmin"
|
||||
Me.DD_ECMAdmin.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
|
||||
'
|
||||
'grvwMain
|
||||
'
|
||||
Me.grvwMain.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colENTITY_ID, Me.colLANGUAGE, Me.colCOLUMN_VIEW, Me.colHEADER_CAPTION, Me.colWIDTH, Me.colTYPE_ID, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN, Me.colVISIBLE, Me.colNAME})
|
||||
Me.grvwMain.GridControl = Me.GridMain
|
||||
Me.grvwMain.Name = "grvwMain"
|
||||
Me.grvwMain.OptionsBehavior.Editable = False
|
||||
Me.grvwMain.OptionsView.ShowAutoFilterRow = True
|
||||
'
|
||||
'colGUID
|
||||
'
|
||||
Me.colGUID.FieldName = "GUID"
|
||||
Me.colGUID.Name = "colGUID"
|
||||
Me.colGUID.Visible = True
|
||||
Me.colGUID.VisibleIndex = 1
|
||||
'
|
||||
'colENTITY_ID
|
||||
'
|
||||
Me.colENTITY_ID.FieldName = "ENTITY_ID"
|
||||
Me.colENTITY_ID.Name = "colENTITY_ID"
|
||||
Me.colENTITY_ID.Visible = True
|
||||
Me.colENTITY_ID.VisibleIndex = 2
|
||||
'
|
||||
'colLANGUAGE
|
||||
'
|
||||
Me.colLANGUAGE.FieldName = "LANGUAGE"
|
||||
Me.colLANGUAGE.Name = "colLANGUAGE"
|
||||
Me.colLANGUAGE.Visible = True
|
||||
Me.colLANGUAGE.VisibleIndex = 3
|
||||
'
|
||||
'colCOLUMN_VIEW
|
||||
'
|
||||
Me.colCOLUMN_VIEW.FieldName = "COLUMN_VIEW"
|
||||
Me.colCOLUMN_VIEW.Name = "colCOLUMN_VIEW"
|
||||
Me.colCOLUMN_VIEW.Visible = True
|
||||
Me.colCOLUMN_VIEW.VisibleIndex = 4
|
||||
'
|
||||
'colHEADER_CAPTION
|
||||
'
|
||||
Me.colHEADER_CAPTION.FieldName = "HEADER_CAPTION"
|
||||
Me.colHEADER_CAPTION.Name = "colHEADER_CAPTION"
|
||||
Me.colHEADER_CAPTION.Visible = True
|
||||
Me.colHEADER_CAPTION.VisibleIndex = 5
|
||||
'
|
||||
'colWIDTH
|
||||
'
|
||||
Me.colWIDTH.FieldName = "WIDTH"
|
||||
Me.colWIDTH.Name = "colWIDTH"
|
||||
Me.colWIDTH.Visible = True
|
||||
Me.colWIDTH.VisibleIndex = 6
|
||||
'
|
||||
'colTYPE_ID
|
||||
'
|
||||
Me.colTYPE_ID.FieldName = "TYPE_ID"
|
||||
Me.colTYPE_ID.Name = "colTYPE_ID"
|
||||
Me.colTYPE_ID.Visible = True
|
||||
Me.colTYPE_ID.VisibleIndex = 7
|
||||
'
|
||||
'colADDED_WHO
|
||||
'
|
||||
Me.colADDED_WHO.FieldName = "ADDED_WHO"
|
||||
Me.colADDED_WHO.Name = "colADDED_WHO"
|
||||
Me.colADDED_WHO.Visible = True
|
||||
Me.colADDED_WHO.VisibleIndex = 8
|
||||
'
|
||||
'colADDED_WHEN
|
||||
'
|
||||
Me.colADDED_WHEN.FieldName = "ADDED_WHEN"
|
||||
Me.colADDED_WHEN.Name = "colADDED_WHEN"
|
||||
Me.colADDED_WHEN.Visible = True
|
||||
Me.colADDED_WHEN.VisibleIndex = 9
|
||||
'
|
||||
'colCHANGED_WHO
|
||||
'
|
||||
Me.colCHANGED_WHO.FieldName = "CHANGED_WHO"
|
||||
Me.colCHANGED_WHO.Name = "colCHANGED_WHO"
|
||||
Me.colCHANGED_WHO.Visible = True
|
||||
Me.colCHANGED_WHO.VisibleIndex = 10
|
||||
'
|
||||
'colCHANGED_WHEN
|
||||
'
|
||||
Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN"
|
||||
Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN"
|
||||
Me.colCHANGED_WHEN.Visible = True
|
||||
Me.colCHANGED_WHEN.VisibleIndex = 11
|
||||
'
|
||||
'colVISIBLE
|
||||
'
|
||||
Me.colVISIBLE.FieldName = "VISIBLE"
|
||||
Me.colVISIBLE.Name = "colVISIBLE"
|
||||
Me.colVISIBLE.Visible = True
|
||||
Me.colVISIBLE.VisibleIndex = 12
|
||||
'
|
||||
'colNAME
|
||||
'
|
||||
Me.colNAME.Caption = "NAME"
|
||||
Me.colNAME.FieldName = "NAME"
|
||||
Me.colNAME.Name = "colNAME"
|
||||
Me.colNAME.UnboundType = DevExpress.Data.UnboundColumnType.[String]
|
||||
Me.colNAME.Visible = True
|
||||
Me.colNAME.VisibleIndex = 0
|
||||
'
|
||||
'GroupBox1
|
||||
'
|
||||
Me.GroupBox1.Controls.Add(Me.Label4)
|
||||
Me.GroupBox1.Controls.Add(Me.Label3)
|
||||
Me.GroupBox1.Controls.Add(Me.Label2)
|
||||
Me.GroupBox1.Controls.Add(Me.Label1)
|
||||
Me.GroupBox1.Location = New System.Drawing.Point(307, 172)
|
||||
Me.GroupBox1.Name = "GroupBox1"
|
||||
Me.GroupBox1.Size = New System.Drawing.Size(148, 98)
|
||||
Me.GroupBox1.TabIndex = 31
|
||||
Me.GroupBox1.TabStop = False
|
||||
Me.GroupBox1.Text = "Spaltentypen"
|
||||
'
|
||||
'Label4
|
||||
'
|
||||
Me.Label4.AutoSize = True
|
||||
Me.Label4.Location = New System.Drawing.Point(6, 75)
|
||||
Me.Label4.Name = "Label4"
|
||||
Me.Label4.Size = New System.Drawing.Size(76, 13)
|
||||
Me.Label4.TabIndex = 3
|
||||
Me.Label4.Text = "4 = DropDown"
|
||||
'
|
||||
'Label3
|
||||
'
|
||||
Me.Label3.AutoSize = True
|
||||
Me.Label3.Location = New System.Drawing.Point(6, 54)
|
||||
Me.Label3.Name = "Label3"
|
||||
Me.Label3.Size = New System.Drawing.Size(78, 13)
|
||||
Me.Label3.TabIndex = 2
|
||||
Me.Label3.Text = "3 = DatePicker"
|
||||
'
|
||||
'Label2
|
||||
'
|
||||
Me.Label2.AutoSize = True
|
||||
Me.Label2.Location = New System.Drawing.Point(6, 34)
|
||||
Me.Label2.Name = "Label2"
|
||||
Me.Label2.Size = New System.Drawing.Size(74, 13)
|
||||
Me.Label2.TabIndex = 1
|
||||
Me.Label2.Text = "2 = CheckBox"
|
||||
'
|
||||
'Label1
|
||||
'
|
||||
Me.Label1.AutoSize = True
|
||||
Me.Label1.Location = New System.Drawing.Point(6, 16)
|
||||
Me.Label1.Name = "Label1"
|
||||
Me.Label1.Size = New System.Drawing.Size(64, 13)
|
||||
Me.Label1.TabIndex = 0
|
||||
Me.Label1.Text = "1 = TextBox"
|
||||
'
|
||||
'labelSuccess
|
||||
'
|
||||
Me.labelSuccess.AutoSize = True
|
||||
Me.labelSuccess.BackColor = System.Drawing.Color.Yellow
|
||||
Me.labelSuccess.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.labelSuccess.Location = New System.Drawing.Point(12, 342)
|
||||
Me.labelSuccess.Name = "labelSuccess"
|
||||
Me.labelSuccess.Size = New System.Drawing.Size(177, 16)
|
||||
Me.labelSuccess.TabIndex = 28
|
||||
Me.labelSuccess.Text = "Änderungen gespeichert"
|
||||
Me.labelSuccess.Visible = False
|
||||
'
|
||||
'TYPE_IDComboBox
|
||||
'
|
||||
Me.TYPE_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "TYPE_ID", True))
|
||||
Me.TYPE_IDComboBox.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
|
||||
Me.TYPE_IDComboBox.DisplayMember = "TYPE_ID"
|
||||
Me.TYPE_IDComboBox.FormattingEnabled = True
|
||||
Me.TYPE_IDComboBox.Location = New System.Drawing.Point(123, 172)
|
||||
Me.TYPE_IDComboBox.Name = "TYPE_IDComboBox"
|
||||
Me.TYPE_IDComboBox.Size = New System.Drawing.Size(178, 21)
|
||||
Me.TYPE_IDComboBox.TabIndex = 29
|
||||
Me.TYPE_IDComboBox.ValueMember = "TYPE_ID"
|
||||
'
|
||||
'LANGUAGEComboBox
|
||||
'
|
||||
Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "LANGUAGE", True))
|
||||
Me.LANGUAGEComboBox.FormattingEnabled = True
|
||||
Me.LANGUAGEComboBox.Items.AddRange(New Object() {"de-DE", "en-US"})
|
||||
Me.LANGUAGEComboBox.Location = New System.Drawing.Point(123, 67)
|
||||
Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox"
|
||||
Me.LANGUAGEComboBox.Size = New System.Drawing.Size(178, 21)
|
||||
Me.LANGUAGEComboBox.TabIndex = 25
|
||||
'
|
||||
'ComboBox1
|
||||
'
|
||||
Me.ComboBox1.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ENTITY_ID", True))
|
||||
Me.ComboBox1.DataSource = Me.TBWH_ENTITYBindingSource
|
||||
Me.ComboBox1.DisplayMember = "FORM_TITLE"
|
||||
Me.ComboBox1.FormattingEnabled = True
|
||||
Me.ComboBox1.Location = New System.Drawing.Point(123, 42)
|
||||
Me.ComboBox1.Name = "ComboBox1"
|
||||
Me.ComboBox1.Size = New System.Drawing.Size(178, 21)
|
||||
Me.ComboBox1.TabIndex = 24
|
||||
Me.ComboBox1.ValueMember = "FORM_ID"
|
||||
'
|
||||
'TBWH_ENTITYBindingSource
|
||||
'
|
||||
Me.TBWH_ENTITYBindingSource.DataMember = "TBWH_ENTITY"
|
||||
Me.TBWH_ENTITYBindingSource.DataSource = Me.DD_DMSDataSet
|
||||
'
|
||||
'DD_DMSDataSet
|
||||
'
|
||||
Me.DD_DMSDataSet.DataSetName = "DD_DMSDataSet"
|
||||
Me.DD_DMSDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
|
||||
'
|
||||
'GUIDTextBox
|
||||
'
|
||||
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "GUID", True))
|
||||
Me.GUIDTextBox.Location = New System.Drawing.Point(123, 16)
|
||||
Me.GUIDTextBox.Name = "GUIDTextBox"
|
||||
Me.GUIDTextBox.ReadOnly = True
|
||||
Me.GUIDTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.GUIDTextBox.TabIndex = 1
|
||||
'
|
||||
'COLUMN_VIEWTextBox
|
||||
'
|
||||
Me.COLUMN_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "COLUMN_VIEW", True))
|
||||
Me.COLUMN_VIEWTextBox.Location = New System.Drawing.Point(123, 94)
|
||||
Me.COLUMN_VIEWTextBox.Name = "COLUMN_VIEWTextBox"
|
||||
Me.COLUMN_VIEWTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.COLUMN_VIEWTextBox.TabIndex = 26
|
||||
'
|
||||
'HEADER_CAPTIONTextBox
|
||||
'
|
||||
Me.HEADER_CAPTIONTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "HEADER_CAPTION", True))
|
||||
Me.HEADER_CAPTIONTextBox.Location = New System.Drawing.Point(123, 120)
|
||||
Me.HEADER_CAPTIONTextBox.Name = "HEADER_CAPTIONTextBox"
|
||||
Me.HEADER_CAPTIONTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.HEADER_CAPTIONTextBox.TabIndex = 27
|
||||
'
|
||||
'WIDTHTextBox
|
||||
'
|
||||
Me.WIDTHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "WIDTH", True))
|
||||
Me.WIDTHTextBox.Location = New System.Drawing.Point(123, 146)
|
||||
Me.WIDTHTextBox.Name = "WIDTHTextBox"
|
||||
Me.WIDTHTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.WIDTHTextBox.TabIndex = 28
|
||||
'
|
||||
'ADDED_WHOTextBox
|
||||
'
|
||||
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHO", True))
|
||||
Me.ADDED_WHOTextBox.Location = New System.Drawing.Point(123, 229)
|
||||
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
|
||||
Me.ADDED_WHOTextBox.ReadOnly = True
|
||||
Me.ADDED_WHOTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.ADDED_WHOTextBox.TabIndex = 15
|
||||
'
|
||||
'ADDED_WHENTextBox
|
||||
'
|
||||
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHEN", True))
|
||||
Me.ADDED_WHENTextBox.Location = New System.Drawing.Point(123, 255)
|
||||
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
|
||||
Me.ADDED_WHENTextBox.ReadOnly = True
|
||||
Me.ADDED_WHENTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.ADDED_WHENTextBox.TabIndex = 17
|
||||
'
|
||||
'CHANGED_WHOTextBox
|
||||
'
|
||||
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHO", True))
|
||||
Me.CHANGED_WHOTextBox.Location = New System.Drawing.Point(123, 281)
|
||||
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
|
||||
Me.CHANGED_WHOTextBox.ReadOnly = True
|
||||
Me.CHANGED_WHOTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.CHANGED_WHOTextBox.TabIndex = 19
|
||||
'
|
||||
'CHANGED_WHENTextBox
|
||||
'
|
||||
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHEN", True))
|
||||
Me.CHANGED_WHENTextBox.Location = New System.Drawing.Point(123, 307)
|
||||
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
|
||||
Me.CHANGED_WHENTextBox.ReadOnly = True
|
||||
Me.CHANGED_WHENTextBox.Size = New System.Drawing.Size(178, 20)
|
||||
Me.CHANGED_WHENTextBox.TabIndex = 21
|
||||
'
|
||||
'VISIBLECheckBox
|
||||
'
|
||||
Me.VISIBLECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "VISIBLE", True))
|
||||
Me.VISIBLECheckBox.Location = New System.Drawing.Point(123, 199)
|
||||
Me.VISIBLECheckBox.Name = "VISIBLECheckBox"
|
||||
Me.VISIBLECheckBox.Size = New System.Drawing.Size(104, 24)
|
||||
Me.VISIBLECheckBox.TabIndex = 30
|
||||
Me.VISIBLECheckBox.Text = "Sichtbar"
|
||||
Me.VISIBLECheckBox.UseVisualStyleBackColor = True
|
||||
'
|
||||
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
'
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.ClearBeforeFill = True
|
||||
'
|
||||
'TableAdapterManager
|
||||
'
|
||||
Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
|
||||
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
Me.TableAdapterManager.TBPMO_FORM_CONSTRUCTOR_DETAILTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_FORM_CONSTRUCTORTableAdapter = Nothing
|
||||
Me.TableAdapterManager.TBPMO_SAP_FUBATableAdapter = Nothing
|
||||
Me.TableAdapterManager.UpdateOrder = DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
|
||||
'
|
||||
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator
|
||||
'
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.BindingSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.CountItem = Me.BindingNavigatorCountItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem})
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Location = New System.Drawing.Point(0, 0)
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Name = "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator"
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Size = New System.Drawing.Size(864, 25)
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.TabIndex = 1
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Text = "BindingNavigator1"
|
||||
'
|
||||
'BindingNavigatorAddNewItem
|
||||
'
|
||||
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
|
||||
Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorAddNewItem.Text = "Neu hinzufügen"
|
||||
'
|
||||
'BindingNavigatorCountItem
|
||||
'
|
||||
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
|
||||
Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(44, 22)
|
||||
Me.BindingNavigatorCountItem.Text = "von {0}"
|
||||
Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
|
||||
'
|
||||
'BindingNavigatorDeleteItem
|
||||
'
|
||||
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
|
||||
Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorDeleteItem.Text = "Löschen"
|
||||
'
|
||||
'BindingNavigatorMoveFirstItem
|
||||
'
|
||||
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
|
||||
Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
|
||||
'
|
||||
'BindingNavigatorMovePreviousItem
|
||||
'
|
||||
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
|
||||
Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
|
||||
'
|
||||
'BindingNavigatorSeparator
|
||||
'
|
||||
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
|
||||
Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'BindingNavigatorPositionItem
|
||||
'
|
||||
Me.BindingNavigatorPositionItem.AccessibleName = "Position"
|
||||
Me.BindingNavigatorPositionItem.AutoSize = False
|
||||
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
|
||||
Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
|
||||
Me.BindingNavigatorPositionItem.Text = "0"
|
||||
Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
|
||||
'
|
||||
'BindingNavigatorSeparator1
|
||||
'
|
||||
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
|
||||
Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'BindingNavigatorMoveNextItem
|
||||
'
|
||||
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
|
||||
Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
|
||||
'
|
||||
'BindingNavigatorMoveLastItem
|
||||
'
|
||||
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
|
||||
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
|
||||
Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
|
||||
Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
|
||||
'
|
||||
'BindingNavigatorSeparator2
|
||||
'
|
||||
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
|
||||
Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
|
||||
'
|
||||
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem
|
||||
'
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image = CType(resources.GetObject("TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image"), System.Drawing.Image)
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Name = "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem"
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Size = New System.Drawing.Size(23, 22)
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Text = "Daten speichern"
|
||||
'
|
||||
'TBWH_ENTITYTableAdapter
|
||||
'
|
||||
Me.TBWH_ENTITYTableAdapter.ClearBeforeFill = True
|
||||
'
|
||||
'TableAdapterManager1
|
||||
'
|
||||
Me.TableAdapterManager1.BackupDataSetBeforeUpdate = False
|
||||
Me.TableAdapterManager1.Connection = Nothing
|
||||
Me.TableAdapterManager1.TBDD_CLIENTTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_CONNECTIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_DOKUMENTARTTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_EINGANGSARTENTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_EMAIL_ACCOUNTTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_GROUPS_USERTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_INDEX_AUTOMTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_USER_GROUPSTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBDD_USERTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_CONSTRUCTOR_USER_SQLTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FILES_USERTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FOLLOW_UP_EMAILTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FOLLUPEMAIL_USERTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FORM_CONSTRUCTOR_DETAILTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FORM_CONSTRUCTORTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FORM_TYPETableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FORM_VIEWTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_FORMTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_KONFIGURATIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_LANGUAGE_OBJECTTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_RECORD_LOG_CONFIGTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_RECORDTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_RIGHT_GROUPTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_STRUCTURE_NODES_CONFIGURATIONTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_TEMPLATE_ENTITYTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_TEMPLATE_PATTERNTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_TEMPLATETableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WD_FVIEW_DT_INDEXTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WD_IMPORT_PROFILE_IDXTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WD_IMPORT_PROFILETableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WD_NAMECONVENTION_FORMATTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WD_OBJECTTYPETableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WORKFLOW_TASK_HISTORYTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WORKFLOW_TASK_STATETableAdapter = Nothing
|
||||
Me.TableAdapterManager1.TBPMO_WORKFLOWTableAdapter = Nothing
|
||||
Me.TableAdapterManager1.UpdateOrder = DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
|
||||
'
|
||||
'frmWD_Resultlist_Config
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(864, 693)
|
||||
Me.Controls.Add(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator)
|
||||
Me.Controls.Add(Me.SplitContainer1)
|
||||
Me.Name = "frmWD_Resultlist_Config"
|
||||
Me.Text = "frmWD_Resultlist_Config"
|
||||
Me.SplitContainer1.Panel1.ResumeLayout(False)
|
||||
Me.SplitContainer1.Panel2.ResumeLayout(False)
|
||||
Me.SplitContainer1.Panel2.PerformLayout()
|
||||
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.SplitContainer1.ResumeLayout(False)
|
||||
CType(Me.GridMain, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.DD_ECMAdmin, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.grvwMain, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.GroupBox1.ResumeLayout(False)
|
||||
Me.GroupBox1.PerformLayout()
|
||||
CType(Me.TBWH_ENTITYBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.DD_DMSDataSet, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
CType(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.ResumeLayout(False)
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Friend WithEvents SplitContainer1 As System.Windows.Forms.SplitContainer
|
||||
Friend WithEvents GridMain As DevExpress.XtraGrid.GridControl
|
||||
Friend WithEvents grvwMain As DevExpress.XtraGrid.Views.Grid.GridView
|
||||
Friend WithEvents DD_ECMAdmin As DD_Record_Organiser.DD_ECMAdmin
|
||||
Friend WithEvents TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource As System.Windows.Forms.BindingSource
|
||||
Friend WithEvents TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter As DD_Record_Organiser.DD_ECMAdminTableAdapters.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter
|
||||
Friend WithEvents TableAdapterManager As DD_Record_Organiser.DD_ECMAdminTableAdapters.TableAdapterManager
|
||||
Friend WithEvents TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator As System.Windows.Forms.BindingNavigator
|
||||
Friend WithEvents BindingNavigatorAddNewItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorCountItem As System.Windows.Forms.ToolStripLabel
|
||||
Friend WithEvents BindingNavigatorDeleteItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMoveFirstItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMovePreviousItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorSeparator As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents BindingNavigatorPositionItem As System.Windows.Forms.ToolStripTextBox
|
||||
Friend WithEvents BindingNavigatorSeparator1 As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents BindingNavigatorMoveNextItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorMoveLastItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents BindingNavigatorSeparator2 As System.Windows.Forms.ToolStripSeparator
|
||||
Friend WithEvents TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem As System.Windows.Forms.ToolStripButton
|
||||
Friend WithEvents GUIDTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents COLUMN_VIEWTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents HEADER_CAPTIONTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents WIDTHTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents VISIBLECheckBox As System.Windows.Forms.CheckBox
|
||||
Friend WithEvents DD_DMSDataSet As DD_Record_Organiser.DD_DMSDataSet
|
||||
Friend WithEvents TBWH_ENTITYBindingSource As System.Windows.Forms.BindingSource
|
||||
Friend WithEvents TBWH_ENTITYTableAdapter As DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBWH_ENTITYTableAdapter
|
||||
Friend WithEvents TableAdapterManager1 As DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager
|
||||
Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
|
||||
Friend WithEvents LANGUAGEComboBox As System.Windows.Forms.ComboBox
|
||||
Friend WithEvents TYPE_IDComboBox As System.Windows.Forms.ComboBox
|
||||
Friend WithEvents labelSuccess As System.Windows.Forms.Label
|
||||
Friend WithEvents ADDED_WHOTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents ADDED_WHENTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents CHANGED_WHOTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents CHANGED_WHENTextBox As System.Windows.Forms.TextBox
|
||||
Friend WithEvents colGUID As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colENTITY_ID As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colLANGUAGE As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCOLUMN_VIEW As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colHEADER_CAPTION As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colWIDTH As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colTYPE_ID As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colADDED_WHO As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colADDED_WHEN As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCHANGED_WHO As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colCHANGED_WHEN As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents colVISIBLE As DevExpress.XtraGrid.Columns.GridColumn
|
||||
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents Label4 As System.Windows.Forms.Label
|
||||
Friend WithEvents Label3 As System.Windows.Forms.Label
|
||||
Friend WithEvents Label2 As System.Windows.Forms.Label
|
||||
Friend WithEvents Label1 As System.Windows.Forms.Label
|
||||
Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn
|
||||
End Class
|
||||
@ -117,10 +117,10 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="NAMELabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="GUIDLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="LANGUAGELabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="ENTITY_IDLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="COLUMN_VIEWLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
@ -135,26 +135,41 @@
|
||||
<metadata name="TYPE_IDLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="GUIDLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="LANGUAGELabel1.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="ENTITY_IDLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="CHANGED_WHENLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="TBPMO_RESULTLIST_CONFIGBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<metadata name="CHANGED_WHOLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="ADDED_WHENLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="ADDED_WHOLabel.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
<metadata name="TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>152, 17</value>
|
||||
</metadata>
|
||||
<metadata name="DD_ECMAdmin.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="TBPMO_RESULTLIST_CONFIGTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>441, 17</value>
|
||||
<metadata name="TBWH_ENTITYBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>160, 56</value>
|
||||
</metadata>
|
||||
<metadata name="DD_DMSDataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 56</value>
|
||||
</metadata>
|
||||
<metadata name="TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>516, 17</value>
|
||||
</metadata>
|
||||
<metadata name="TableAdapterManager.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>724, 17</value>
|
||||
<value>874, 17</value>
|
||||
</metadata>
|
||||
<metadata name="TBPMO_RESULTLIST_CONFIGBindingNavigator.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>897, 17</value>
|
||||
<metadata name="TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>1047, 17</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="BindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
@ -221,11 +236,17 @@
|
||||
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="TBPMO_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<data name="TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
|
||||
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="TBWH_ENTITYTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>368, 56</value>
|
||||
</metadata>
|
||||
<metadata name="TableAdapterManager1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>570, 56</value>
|
||||
</metadata>
|
||||
</root>
|
||||
95
app/DD-Record-Organiser/frmWD_Resultlist_Config.vb
Normal file
95
app/DD-Record-Organiser/frmWD_Resultlist_Config.vb
Normal file
@ -0,0 +1,95 @@
|
||||
Public Class frmWD_Resultlist_Config
|
||||
|
||||
'Private Class ResultListType
|
||||
' Public Property Name As String
|
||||
' Public Property Id As Integer
|
||||
|
||||
' Public Sub New(Id As Integer, Name As String)
|
||||
' Me.Name = Name
|
||||
' Me.Id = Id
|
||||
' End Sub
|
||||
'End Class
|
||||
|
||||
Private Sub frmWD_Resultlist_Config_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
Try
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Connection.ConnectionString = MyConnectionString
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Fill(Me.DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIG)
|
||||
Me.TBWH_ENTITYTableAdapter.Connection.ConnectionString = MyConnectionString
|
||||
Me.TBWH_ENTITYTableAdapter.Fill(Me.DD_DMSDataSet.TBWH_ENTITY, USER_LANGUAGE)
|
||||
|
||||
'Dim ResultListTypes As New List(Of ResultListType)
|
||||
'ResultListTypes.Add(New ResultListType(1, "TextBox"))
|
||||
'ResultListTypes.Add(New ResultListType(2, "CheckBox"))
|
||||
'ResultListTypes.Add(New ResultListType(3, "DatePicker"))
|
||||
'ResultListTypes.Add(New ResultListType(4, "DropDown"))
|
||||
|
||||
' Gruppierung nach Entität und dann nach Sprache
|
||||
grvwMain.Columns.Item("NAME").GroupIndex = 0
|
||||
grvwMain.Columns.Item("LANGUAGE").GroupIndex = 1
|
||||
' Unwichtige Spalten ausblenden
|
||||
grvwMain.Columns.Item("GUID").Visible = False
|
||||
grvwMain.Columns.Item("ADDED_WHO").Visible = False
|
||||
grvwMain.Columns.Item("ADDED_WHEN").Visible = False
|
||||
grvwMain.Columns.Item("CHANGED_WHO").Visible = False
|
||||
grvwMain.Columns.Item("CHANGED_WHEN").Visible = False
|
||||
Catch ex As System.Exception
|
||||
MsgBox("Error while loading TBPMO_DOCSEARCH_RESULTLIST_CONFIG:" & vbNewLine & ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Handles TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Click
|
||||
Try
|
||||
Me.Validate()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.EndEdit()
|
||||
|
||||
If DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIG.GetChanges() IsNot Nothing Then
|
||||
Me.CHANGED_WHOTextBox.Text = Environment.UserName
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.EndEdit()
|
||||
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGTableAdapter.Update(Me.DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIG)
|
||||
labelSuccess.Visible = True
|
||||
Else
|
||||
MsgBox("No changes")
|
||||
labelSuccess.Visible = False
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox("Error while saving TBPMO_DOCSEARCH_RESULTLIST_CONFIG:" & vbNewLine & ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource_AddingNew(sender As Object, e As System.ComponentModel.AddingNewEventArgs) Handles TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource.AddingNew
|
||||
DD_ECMAdmin.TBPMO_DOCSEARCH_RESULTLIST_CONFIG.ADDED_WHOColumn.DefaultValue = Environment.UserName
|
||||
End Sub
|
||||
|
||||
Private Sub grvwMain_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles grvwMain.FocusedRowChanged
|
||||
labelSuccess.Visible = False
|
||||
End Sub
|
||||
|
||||
Private Sub grvwMain_CustomUnboundColumnData(sender As Object, e As DevExpress.XtraGrid.Views.Base.CustomColumnDataEventArgs) Handles grvwMain.CustomUnboundColumnData
|
||||
If e.IsGetData Then
|
||||
Dim row As DataRowView = e.Row
|
||||
Dim entityId = row.Item("ENTITY_ID")
|
||||
Dim entityRow As DataRow = DD_DMSDataSet.TBWH_ENTITY.Select("FORM_ID = " & entityId).First()
|
||||
If Not IsNothing(entityRow.Item("FORM_TITLE")) Then
|
||||
e.Value = entityRow.Item("FORM_TITLE").ToString()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub TYPE_IDComboBox_SelectedIndexChanged(sender As Object, e As EventArgs) Handles TYPE_IDComboBox.SelectedIndexChanged
|
||||
Dim cmb As ComboBox = sender
|
||||
Dim val = cmb.SelectedValue
|
||||
Console.WriteLine(val)
|
||||
End Sub
|
||||
|
||||
Private Sub TYPE_IDComboBox_TextUpdate(sender As Object, e As EventArgs) Handles TYPE_IDComboBox.TextUpdate
|
||||
Dim cmb As ComboBox = sender
|
||||
Dim val = cmb.SelectedValue
|
||||
Console.WriteLine(val)
|
||||
End Sub
|
||||
|
||||
Private Sub TYPE_IDComboBox_SelectionChangeCommitted(sender As Object, e As EventArgs) Handles TYPE_IDComboBox.SelectionChangeCommitted
|
||||
Dim cmb As ComboBox = sender
|
||||
Dim val = cmb.SelectedValue
|
||||
Console.WriteLine(val)
|
||||
End Sub
|
||||
End Class
|
||||
Loading…
x
Reference in New Issue
Block a user