MS Changes Items

This commit is contained in:
Digital Data - Marlon Schreiber
2018-09-28 14:25:35 +02:00
parent 68a4d53e0e
commit 37d946f435
17 changed files with 86 additions and 55 deletions

View File

@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.2.0.3")> <Assembly: AssemblyVersion("2.2.0.4")>
<Assembly: AssemblyFileVersion("1.0.0.0")> <Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -3984,7 +3984,6 @@ Partial Public Class MyDataset
MyBase.Columns.Add(Me.columnGUID) MyBase.Columns.Add(Me.columnGUID)
Me.Constraints.Add(New Global.System.Data.UniqueConstraint("Constraint1", New Global.System.Data.DataColumn() {Me.columnGUID}, true)) Me.Constraints.Add(New Global.System.Data.UniqueConstraint("Constraint1", New Global.System.Data.DataColumn() {Me.columnGUID}, true))
Me.columnSENDUNGNR.AllowDBNull = false Me.columnSENDUNGNR.AllowDBNull = false
Me.columnBEZEICHNUNG.AllowDBNull = false
Me.columnBEZEICHNUNG.MaxLength = 500 Me.columnBEZEICHNUNG.MaxLength = 500
Me.columnGUID.AutoIncrement = true Me.columnGUID.AutoIncrement = true
Me.columnGUID.AutoIncrementSeed = -1 Me.columnGUID.AutoIncrementSeed = -1
@@ -6731,7 +6730,11 @@ Partial Public Class MyDataset
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")> _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")> _
Public Property BEZEICHNUNG() As String Public Property BEZEICHNUNG() As String
Get Get
Return CType(Me(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn),String) Try
Return CType(Me(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn),String)
Catch e As Global.System.InvalidCastException
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte BEZEICHNUNG in Tabelle TBKOMMCOLLI_HINWEIS ist DBNull.", e)
End Try
End Get End Get
Set Set
Me(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn) = value Me(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn) = value
@@ -6748,6 +6751,18 @@ Partial Public Class MyDataset
Me(Me.tableTBKOMMCOLLI_HINWEIS.GUIDColumn) = value Me(Me.tableTBKOMMCOLLI_HINWEIS.GUIDColumn) = value
End Set End Set
End Property End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")> _
Public Function IsBEZEICHNUNGNull() As Boolean
Return Me.IsNull(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn)
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "15.0.0.0")> _
Public Sub SetBEZEICHNUNGNull()
Me(Me.tableTBKOMMCOLLI_HINWEIS.BEZEICHNUNGColumn) = Global.System.Convert.DBNull
End Sub
End Class End Class
'''<summary> '''<summary>
@@ -12280,10 +12295,10 @@ Namespace MyDatasetTableAdapters
Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand() Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
Me._commandCollection(0).Connection = Me.Connection Me._commandCollection(0).Connection = Me.Connection
Me._commandCollection(0).CommandText = "SELECT TBKOMMCOLLI_HINWEIS.SENDUNGNR, TBKOMMCOLLI_TEXTSCHLUESSEL.BEZEICHNU"& _ Me._commandCollection(0).CommandText = "SELECT TBKOMMCOLLI_HINWEIS.SENDUNGNR, TBKOMMCOLLI_TEXTSCHLUESSEL.BEZEICHNU"& _
"NG, TBKOMMCOLLI_HINWEIS.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBKOMMCOLLI_HINWEIS INNER JOIN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "& _ "NG + ' ' + TBKOMMCOLLI_HINWEIS.TEXT AS BEZEICHNUNG, TBKOMMCOLLI_HINWEIS.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FR"& _
" TBKOMMCOLLI_TEXTSCHLUESSEL ON TBKOMMCOLLI_HINWEIS.TEXTSCH"& _ "OM TBKOMMCOLLI_HINWEIS INNER JOIN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBKOMMCOL"& _
"LUSSEL_ID = TBKOMMCOLLI_TEXTSCHLUESSEL.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (TBKOMMCOLLI_HINWEIS.S"& _ "LI_TEXTSCHLUESSEL ON TBKOMMCOLLI_HINWEIS.TEXTSCHLUSSEL_ID = TBKOMMCOLLI_TEXTSCHL"& _
"ENDUNGNR = @Sendung)" "UESSEL.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (TBKOMMCOLLI_HINWEIS.SENDUNGNR = @Sendung)"
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
Me._commandCollection(0).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Sendung", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "SENDUNGNR", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", "")) Me._commandCollection(0).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Sendung", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "SENDUNGNR", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
End Sub End Sub

View File

@@ -936,10 +936,10 @@ ORDER BY CODE</CommandText>
</TableAdapter> </TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBKOMMCOLLI_HINWEISTableAdapter" GeneratorDataComponentClassName="TBKOMMCOLLI_HINWEISTableAdapter" Name="TBKOMMCOLLI_HINWEIS" UserDataComponentName="TBKOMMCOLLI_HINWEISTableAdapter"> <TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBKOMMCOLLI_HINWEISTableAdapter" GeneratorDataComponentClassName="TBKOMMCOLLI_HINWEISTableAdapter" Name="TBKOMMCOLLI_HINWEIS" UserDataComponentName="TBKOMMCOLLI_HINWEISTableAdapter">
<MainSource> <MainSource>
<DbSource ConnectionRef="SCHAUM_IIDConnectionString (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="SCHAUM_IIDConnectionString (MySettings)" DbObjectName="SCHAUM_IID.dbo.TBKOMMCOLLI_HINWEIS" DbObjectType="Table" 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">
<SelectCommand> <SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true"> <DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT TBKOMMCOLLI_HINWEIS.SENDUNGNR, TBKOMMCOLLI_TEXTSCHLUESSEL.BEZEICHNUNG, TBKOMMCOLLI_HINWEIS.GUID <CommandText>SELECT TBKOMMCOLLI_HINWEIS.SENDUNGNR, TBKOMMCOLLI_TEXTSCHLUESSEL.BEZEICHNUNG + ' ' + TBKOMMCOLLI_HINWEIS.TEXT AS BEZEICHNUNG, TBKOMMCOLLI_HINWEIS.GUID
FROM TBKOMMCOLLI_HINWEIS INNER JOIN FROM TBKOMMCOLLI_HINWEIS INNER JOIN
TBKOMMCOLLI_TEXTSCHLUESSEL ON TBKOMMCOLLI_HINWEIS.TEXTSCHLUSSEL_ID = TBKOMMCOLLI_TEXTSCHLUESSEL.GUID TBKOMMCOLLI_TEXTSCHLUESSEL ON TBKOMMCOLLI_HINWEIS.TEXTSCHLUSSEL_ID = TBKOMMCOLLI_TEXTSCHLUESSEL.GUID
WHERE (TBKOMMCOLLI_HINWEIS.SENDUNGNR = @Sendung)</CommandText> WHERE (TBKOMMCOLLI_HINWEIS.SENDUNGNR = @Sendung)</CommandText>
@@ -1049,7 +1049,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
<xs:element name="MyDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="MyDataset" msprop:Generator_UserDSName="MyDataset"> <xs:element name="MyDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="MyDataset" msprop:Generator_UserDSName="MyDataset">
<xs:complexType> <xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="TBKOMMCOLLI_MANDANT" msprop:Generator_TableClassName="TBKOMMCOLLI_MANDANTDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_MANDANT" msprop:Generator_TablePropName="TBKOMMCOLLI_MANDANT" msprop:Generator_RowDeletingName="TBKOMMCOLLI_MANDANTRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_MANDANTRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_MANDANTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_MANDANTRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_MANDANT" msprop:Generator_RowChangedName="TBKOMMCOLLI_MANDANTRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_MANDANTRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_MANDANTRow"> <xs:element name="TBKOMMCOLLI_MANDANT" msprop:Generator_TableClassName="TBKOMMCOLLI_MANDANTDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_MANDANT" msprop:Generator_RowChangedName="TBKOMMCOLLI_MANDANTRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_MANDANT" msprop:Generator_RowDeletingName="TBKOMMCOLLI_MANDANTRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_MANDANTRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_MANDANTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_MANDANTRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_MANDANTRow" msprop:Generator_UserTableName="TBKOMMCOLLI_MANDANT" msprop:Generator_RowEvArgName="TBKOMMCOLLI_MANDANTRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1130,7 +1130,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBWH_MANDANT" msprop:Generator_TableClassName="TBWH_MANDANTDataTable" msprop:Generator_TableVarName="tableTBWH_MANDANT" msprop:Generator_TablePropName="TBWH_MANDANT" msprop:Generator_RowDeletingName="TBWH_MANDANTRowDeleting" msprop:Generator_RowChangingName="TBWH_MANDANTRowChanging" msprop:Generator_RowEvHandlerName="TBWH_MANDANTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_MANDANTRowDeleted" msprop:Generator_UserTableName="TBWH_MANDANT" msprop:Generator_RowChangedName="TBWH_MANDANTRowChanged" msprop:Generator_RowEvArgName="TBWH_MANDANTRowChangeEvent" msprop:Generator_RowClassName="TBWH_MANDANTRow"> <xs:element name="TBWH_MANDANT" msprop:Generator_TableClassName="TBWH_MANDANTDataTable" msprop:Generator_TableVarName="tableTBWH_MANDANT" msprop:Generator_RowChangedName="TBWH_MANDANTRowChanged" msprop:Generator_TablePropName="TBWH_MANDANT" msprop:Generator_RowDeletingName="TBWH_MANDANTRowDeleting" msprop:Generator_RowChangingName="TBWH_MANDANTRowChanging" msprop:Generator_RowEvHandlerName="TBWH_MANDANTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWH_MANDANTRowDeleted" msprop:Generator_RowClassName="TBWH_MANDANTRow" msprop:Generator_UserTableName="TBWH_MANDANT" msprop:Generator_RowEvArgName="TBWH_MANDANTRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1151,7 +1151,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_KOPFDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_KOPF" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_KOPFRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_KOPFRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_KOPFRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_KOPFRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_KOPFRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_KOPFRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_KOPFRow"> <xs:element name="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_KOPFDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_KOPF" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_KOPFRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_KOPFRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_KOPFRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_KOPFRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_KOPFRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_KOPFRow" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_KOPFRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1200,7 +1200,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_PAKET_POS" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_POSDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_POS" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_POS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_POSRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_POSRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_POSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_POSRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_POS" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_POSRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_POSRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_POSRow"> <xs:element name="TBKOMMCOLLI_PAKET_POS" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_POSDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_POS" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_POSRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_POS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_POSRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_POSRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_POSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_POSRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_POSRow" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_POS" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_POSRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1231,7 +1231,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_TableClassName="VWKOMMCOLLI_ABSCHLUSS_PAKETDataTable" msprop:Generator_TableVarName="tableVWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_TablePropName="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_RowDeletingName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowDeleting" msprop:Generator_RowChangingName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChanging" msprop:Generator_RowEvHandlerName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChangeEventHandler" msprop:Generator_RowDeletedName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowDeleted" msprop:Generator_UserTableName="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_RowChangedName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChanged" msprop:Generator_RowEvArgName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChangeEvent" msprop:Generator_RowClassName="VWKOMMCOLLI_ABSCHLUSS_PAKETRow"> <xs:element name="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_TableClassName="VWKOMMCOLLI_ABSCHLUSS_PAKETDataTable" msprop:Generator_TableVarName="tableVWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_RowChangedName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChanged" msprop:Generator_TablePropName="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_RowDeletingName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowDeleting" msprop:Generator_RowChangingName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChanging" msprop:Generator_RowEvHandlerName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChangeEventHandler" msprop:Generator_RowDeletedName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowDeleted" msprop:Generator_RowClassName="VWKOMMCOLLI_ABSCHLUSS_PAKETRow" msprop:Generator_UserTableName="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_RowEvArgName="VWKOMMCOLLI_ABSCHLUSS_PAKETRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1271,7 +1271,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_TERMINART" msprop:Generator_TableClassName="TBKOMMCOLLI_TERMINARTDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_TERMINART" msprop:Generator_TablePropName="TBKOMMCOLLI_TERMINART" msprop:Generator_RowDeletingName="TBKOMMCOLLI_TERMINARTRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_TERMINARTRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_TERMINARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_TERMINARTRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_TERMINART" msprop:Generator_RowChangedName="TBKOMMCOLLI_TERMINARTRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_TERMINARTRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_TERMINARTRow"> <xs:element name="TBKOMMCOLLI_TERMINART" msprop:Generator_TableClassName="TBKOMMCOLLI_TERMINARTDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_TERMINART" msprop:Generator_RowChangedName="TBKOMMCOLLI_TERMINARTRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_TERMINART" msprop:Generator_RowDeletingName="TBKOMMCOLLI_TERMINARTRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_TERMINARTRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_TERMINARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_TERMINARTRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_TERMINARTRow" msprop:Generator_UserTableName="TBKOMMCOLLI_TERMINART" msprop:Generator_RowEvArgName="TBKOMMCOLLI_TERMINARTRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1309,7 +1309,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_POS_LSDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_POS_LSRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_POS_LSRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_POS_LSRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_POS_LSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_POS_LSRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_POS_LSRow" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_POS_LSRowChangeEvent"> <xs:element name="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_TableClassName="TBKOMMCOLLI_PAKET_POS_LSDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_TablePropName="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_PAKET_POS_LSRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_PAKET_POS_LSRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_PAKET_POS_LSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_PAKET_POS_LSRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_PAKET_POS_LS" msprop:Generator_RowChangedName="TBKOMMCOLLI_PAKET_POS_LSRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_PAKET_POS_LSRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_PAKET_POS_LSRow">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="VKOPF_EINGANGNR" msprop:Generator_ColumnVarNameInTable="columnVKOPF_EINGANGNR" msprop:Generator_ColumnPropNameInRow="VKOPF_EINGANGNR" msprop:Generator_ColumnPropNameInTable="VKOPF_EINGANGNRColumn" msprop:Generator_UserColumnName="VKOPF_EINGANGNR" minOccurs="0"> <xs:element name="VKOPF_EINGANGNR" msprop:Generator_ColumnVarNameInTable="columnVKOPF_EINGANGNR" msprop:Generator_ColumnPropNameInRow="VKOPF_EINGANGNR" msprop:Generator_ColumnPropNameInTable="VKOPF_EINGANGNRColumn" msprop:Generator_UserColumnName="VKOPF_EINGANGNR" minOccurs="0">
@@ -1322,7 +1322,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_TableClassName="TBKOMMCOLLI_SDGPOSITIONENDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_RowChangedName="TBKOMMCOLLI_SDGPOSITIONENRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_RowDeletingName="TBKOMMCOLLI_SDGPOSITIONENRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_SDGPOSITIONENRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_SDGPOSITIONENRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_SDGPOSITIONENRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_SDGPOSITIONENRow" msprop:Generator_UserTableName="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_RowEvArgName="TBKOMMCOLLI_SDGPOSITIONENRowChangeEvent"> <xs:element name="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_TableClassName="TBKOMMCOLLI_SDGPOSITIONENDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_TablePropName="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_RowDeletingName="TBKOMMCOLLI_SDGPOSITIONENRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_SDGPOSITIONENRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_SDGPOSITIONENRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_SDGPOSITIONENRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_SDGPOSITIONEN" msprop:Generator_RowChangedName="TBKOMMCOLLI_SDGPOSITIONENRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_SDGPOSITIONENRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_SDGPOSITIONENRow">
<xs:complexType> <xs:complexType>
<xs:sequence> <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="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" />
@@ -1344,7 +1344,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_TableClassName="TBKOMMCOLLI_TEXTSCHLUESSELDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_RowChangedName="TBKOMMCOLLI_TEXTSCHLUESSELRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_RowDeletingName="TBKOMMCOLLI_TEXTSCHLUESSELRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_TEXTSCHLUESSELRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_TEXTSCHLUESSELRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_TEXTSCHLUESSELRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_TEXTSCHLUESSELRow" msprop:Generator_UserTableName="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_RowEvArgName="TBKOMMCOLLI_TEXTSCHLUESSELRowChangeEvent"> <xs:element name="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_TableClassName="TBKOMMCOLLI_TEXTSCHLUESSELDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_TablePropName="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_RowDeletingName="TBKOMMCOLLI_TEXTSCHLUESSELRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_TEXTSCHLUESSELRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_TEXTSCHLUESSELRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_TEXTSCHLUESSELRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_TEXTSCHLUESSEL" msprop:Generator_RowChangedName="TBKOMMCOLLI_TEXTSCHLUESSELRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_TEXTSCHLUESSELRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_TEXTSCHLUESSELRow">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="GUID" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" /> <xs:element name="GUID" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" />
@@ -1358,11 +1358,11 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="TBKOMMCOLLI_HINWEIS" msprop:Generator_TableClassName="TBKOMMCOLLI_HINWEISDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_HINWEIS" msprop:Generator_TablePropName="TBKOMMCOLLI_HINWEIS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_HINWEISRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_HINWEISRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_HINWEISRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_HINWEISRowDeleted" msprop:Generator_UserTableName="TBKOMMCOLLI_HINWEIS" msprop:Generator_RowChangedName="TBKOMMCOLLI_HINWEISRowChanged" msprop:Generator_RowEvArgName="TBKOMMCOLLI_HINWEISRowChangeEvent" msprop:Generator_RowClassName="TBKOMMCOLLI_HINWEISRow"> <xs:element name="TBKOMMCOLLI_HINWEIS" msprop:Generator_TableClassName="TBKOMMCOLLI_HINWEISDataTable" msprop:Generator_TableVarName="tableTBKOMMCOLLI_HINWEIS" msprop:Generator_RowChangedName="TBKOMMCOLLI_HINWEISRowChanged" msprop:Generator_TablePropName="TBKOMMCOLLI_HINWEIS" msprop:Generator_RowDeletingName="TBKOMMCOLLI_HINWEISRowDeleting" msprop:Generator_RowChangingName="TBKOMMCOLLI_HINWEISRowChanging" msprop:Generator_RowEvHandlerName="TBKOMMCOLLI_HINWEISRowChangeEventHandler" msprop:Generator_RowDeletedName="TBKOMMCOLLI_HINWEISRowDeleted" msprop:Generator_RowClassName="TBKOMMCOLLI_HINWEISRow" msprop:Generator_UserTableName="TBKOMMCOLLI_HINWEIS" msprop:Generator_RowEvArgName="TBKOMMCOLLI_HINWEISRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="SENDUNGNR" msprop:Generator_ColumnVarNameInTable="columnSENDUNGNR" msprop:Generator_ColumnPropNameInRow="SENDUNGNR" msprop:Generator_ColumnPropNameInTable="SENDUNGNRColumn" msprop:Generator_UserColumnName="SENDUNGNR" type="xs:int" /> <xs:element name="SENDUNGNR" msprop:Generator_ColumnVarNameInTable="columnSENDUNGNR" msprop:Generator_ColumnPropNameInRow="SENDUNGNR" msprop:Generator_ColumnPropNameInTable="SENDUNGNRColumn" msprop:Generator_UserColumnName="SENDUNGNR" type="xs:int" />
<xs:element name="BEZEICHNUNG" msprop:Generator_ColumnVarNameInTable="columnBEZEICHNUNG" msprop:Generator_ColumnPropNameInRow="BEZEICHNUNG" msprop:Generator_ColumnPropNameInTable="BEZEICHNUNGColumn" msprop:Generator_UserColumnName="BEZEICHNUNG"> <xs:element name="BEZEICHNUNG" msprop:Generator_ColumnVarNameInTable="columnBEZEICHNUNG" msprop:Generator_ColumnPropNameInRow="BEZEICHNUNG" msprop:Generator_ColumnPropNameInTable="BEZEICHNUNGColumn" msprop:Generator_UserColumnName="BEZEICHNUNG" minOccurs="0">
<xs:simpleType> <xs:simpleType>
<xs:restriction base="xs:string"> <xs:restriction base="xs:string">
<xs:maxLength value="500" /> <xs:maxLength value="500" />
@@ -1373,7 +1373,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="VWHUP_REPORT1" msprop:Generator_TableClassName="VWHUP_REPORT1DataTable" msprop:Generator_TableVarName="tableVWHUP_REPORT1" msprop:Generator_RowChangedName="VWHUP_REPORT1RowChanged" msprop:Generator_TablePropName="VWHUP_REPORT1" msprop:Generator_RowDeletingName="VWHUP_REPORT1RowDeleting" msprop:Generator_RowChangingName="VWHUP_REPORT1RowChanging" msprop:Generator_RowEvHandlerName="VWHUP_REPORT1RowChangeEventHandler" msprop:Generator_RowDeletedName="VWHUP_REPORT1RowDeleted" msprop:Generator_RowClassName="VWHUP_REPORT1Row" msprop:Generator_UserTableName="VWHUP_REPORT1" msprop:Generator_RowEvArgName="VWHUP_REPORT1RowChangeEvent"> <xs:element name="VWHUP_REPORT1" msprop:Generator_TableClassName="VWHUP_REPORT1DataTable" msprop:Generator_TableVarName="tableVWHUP_REPORT1" msprop:Generator_TablePropName="VWHUP_REPORT1" msprop:Generator_RowDeletingName="VWHUP_REPORT1RowDeleting" msprop:Generator_RowChangingName="VWHUP_REPORT1RowChanging" msprop:Generator_RowEvHandlerName="VWHUP_REPORT1RowChangeEventHandler" msprop:Generator_RowDeletedName="VWHUP_REPORT1RowDeleted" msprop:Generator_UserTableName="VWHUP_REPORT1" msprop:Generator_RowChangedName="VWHUP_REPORT1RowChanged" msprop:Generator_RowEvArgName="VWHUP_REPORT1RowChangeEvent" msprop:Generator_RowClassName="VWHUP_REPORT1Row">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="LAD1" msprop:Generator_ColumnVarNameInTable="columnLAD1" msprop:Generator_ColumnPropNameInRow="LAD1" msprop:Generator_ColumnPropNameInTable="LAD1Column" msprop:Generator_UserColumnName="LAD1"> <xs:element name="LAD1" msprop:Generator_ColumnVarNameInTable="columnLAD1" msprop:Generator_ColumnPropNameInRow="LAD1" msprop:Generator_ColumnPropNameInTable="LAD1Column" msprop:Generator_UserColumnName="LAD1">
@@ -1513,7 +1513,7 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:element name="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_TableClassName="VWKOMMCOLLI_UEBERSICHTDataTable" msprop:Generator_TableVarName="tableVWKOMMCOLLI_UEBERSICHT" msprop:Generator_TablePropName="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_RowDeletingName="VWKOMMCOLLI_UEBERSICHTRowDeleting" msprop:Generator_RowChangingName="VWKOMMCOLLI_UEBERSICHTRowChanging" msprop:Generator_RowEvHandlerName="VWKOMMCOLLI_UEBERSICHTRowChangeEventHandler" msprop:Generator_RowDeletedName="VWKOMMCOLLI_UEBERSICHTRowDeleted" msprop:Generator_UserTableName="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_RowChangedName="VWKOMMCOLLI_UEBERSICHTRowChanged" msprop:Generator_RowEvArgName="VWKOMMCOLLI_UEBERSICHTRowChangeEvent" msprop:Generator_RowClassName="VWKOMMCOLLI_UEBERSICHTRow"> <xs:element name="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_TableClassName="VWKOMMCOLLI_UEBERSICHTDataTable" msprop:Generator_TableVarName="tableVWKOMMCOLLI_UEBERSICHT" msprop:Generator_RowChangedName="VWKOMMCOLLI_UEBERSICHTRowChanged" msprop:Generator_TablePropName="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_RowDeletingName="VWKOMMCOLLI_UEBERSICHTRowDeleting" msprop:Generator_RowChangingName="VWKOMMCOLLI_UEBERSICHTRowChanging" msprop:Generator_RowEvHandlerName="VWKOMMCOLLI_UEBERSICHTRowChangeEventHandler" msprop:Generator_RowDeletedName="VWKOMMCOLLI_UEBERSICHTRowDeleted" msprop:Generator_RowClassName="VWKOMMCOLLI_UEBERSICHTRow" msprop:Generator_UserTableName="VWKOMMCOLLI_UEBERSICHT" msprop:Generator_RowEvArgName="VWKOMMCOLLI_UEBERSICHTRowChangeEvent">
<xs:complexType> <xs:complexType>
<xs:sequence> <xs:sequence>
<xs:element name="LAD1" msprop:Generator_ColumnVarNameInTable="columnLAD1" msprop:Generator_ColumnPropNameInRow="LAD1" msprop:Generator_ColumnPropNameInTable="LAD1Column" msprop:Generator_UserColumnName="LAD1"> <xs:element name="LAD1" msprop:Generator_ColumnVarNameInTable="columnLAD1" msprop:Generator_ColumnPropNameInRow="LAD1" msprop:Generator_ColumnPropNameInTable="LAD1Column" msprop:Generator_UserColumnName="LAD1">
@@ -1670,10 +1670,10 @@ FROM VWKOMMCOLLI_UEBERSICHT</CommandText>
</xs:element> </xs:element>
<xs:annotation> <xs:annotation>
<xs:appinfo> <xs:appinfo>
<msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msdata:parent="TBKOMMCOLLI_MANDANT" msdata:child="TBKOMMCOLLI_PAKET_KOPF" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_KOPFRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_MANDANT" msprop:Generator_ParentPropName="TBKOMMCOLLI_MANDANTRow" /> <msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msdata:parent="TBKOMMCOLLI_MANDANT" msdata:child="TBKOMMCOLLI_PAKET_KOPF" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_KOPFRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msprop:Generator_ParentPropName="TBKOMMCOLLI_MANDANTRow" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_MANDANT" />
<msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msdata:parent="TBKOMMCOLLI_PAKET_KOPF" msdata:child="TBKOMMCOLLI_PAKET_POS" msdata:parentkey="GUID" msdata:childkey="KOPF_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_POS" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_POSRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_ParentPropName="TBKOMMCOLLI_PAKET_KOPFRow" /> <msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msdata:parent="TBKOMMCOLLI_PAKET_KOPF" msdata:child="TBKOMMCOLLI_PAKET_POS" msdata:parentkey="GUID" msdata:childkey="KOPF_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_POS" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_POSRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msprop:Generator_ParentPropName="TBKOMMCOLLI_PAKET_KOPFRow" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_PAKET_KOPF" />
<msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msdata:parent="VWKOMMCOLLI_ABSCHLUSS_PAKET" msdata:child="TBKOMMCOLLI_PAKET_KOPF" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_KOPFRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msprop:Generator_UserParentTable="VWKOMMCOLLI_ABSCHLUSS_PAKET" msprop:Generator_ParentPropName="VWKOMMCOLLI_ABSCHLUSS_PAKETRow" /> <msdata:Relationship name="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msdata:parent="VWKOMMCOLLI_ABSCHLUSS_PAKET" msdata:child="TBKOMMCOLLI_PAKET_KOPF" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_PAKET_KOPF" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_PAKET_KOPFRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msprop:Generator_ParentPropName="VWKOMMCOLLI_ABSCHLUSS_PAKETRow" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" msprop:Generator_UserParentTable="VWKOMMCOLLI_ABSCHLUSS_PAKET" />
<msdata:Relationship name="FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msdata:parent="TBKOMMCOLLI_MANDANT" msdata:child="TBKOMMCOLLI_TERMINART" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_TERMINART" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_TERMINARTRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_MANDANT" msprop:Generator_ParentPropName="TBKOMMCOLLI_MANDANTRow" /> <msdata:Relationship name="FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msdata:parent="TBKOMMCOLLI_MANDANT" msdata:child="TBKOMMCOLLI_TERMINART" msdata:parentkey="GUID" msdata:childkey="MANDANT_ID" msprop:Generator_UserChildTable="TBKOMMCOLLI_TERMINART" msprop:Generator_ChildPropName="GetTBKOMMCOLLI_TERMINARTRows" msprop:Generator_UserRelationName="FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msprop:Generator_ParentPropName="TBKOMMCOLLI_MANDANTRow" msprop:Generator_RelationVarName="relationFK_TBKOMMCOLLI_TERMINART_MANDANT_ID" msprop:Generator_UserParentTable="TBKOMMCOLLI_MANDANT" />
</xs:appinfo> </xs:appinfo>
</xs:annotation> </xs:annotation>
</xs:schema> </xs:schema>

View File

@@ -4,22 +4,23 @@
Changes to this file may cause incorrect behavior and will be lost if Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated. the code is regenerated.
</autogenerated>--> </autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout"> <DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="0" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes> <Shapes>
<Shape ID="DesignTable:TBKOMMCOLLI_MANDANT" ZOrder="15" X="42" Y="-21" Height="324" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="233" /> <Shape ID="DesignTable:TBKOMMCOLLI_MANDANT" ZOrder="16" X="42" Y="-21" Height="324" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="233" />
<Shape ID="DesignTable:TBWH_MANDANT" ZOrder="14" X="432" Y="31" Height="134" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" /> <Shape ID="DesignTable:TBWH_MANDANT" ZOrder="15" X="432" Y="31" Height="134" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:TBKOMMCOLLI_PAKET_KOPF" ZOrder="7" X="57" Y="337" Height="476" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" /> <Shape ID="DesignTable:TBKOMMCOLLI_PAKET_KOPF" ZOrder="8" X="57" Y="337" Height="476" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:TBKOMMCOLLI_PAKET_POS" ZOrder="6" X="525" Y="421" Height="267" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" /> <Shape ID="DesignTable:TBKOMMCOLLI_PAKET_POS" ZOrder="7" X="525" Y="421" Height="267" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:VWKOMMCOLLI_ABSCHLUSS_PAKET" ZOrder="8" X="840" Y="110" Height="286" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" /> <Shape ID="DesignTable:VWKOMMCOLLI_ABSCHLUSS_PAKET" ZOrder="9" X="840" Y="110" Height="286" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:TBKOMMCOLLI_TERMINART" ZOrder="10" X="1225" Y="0" Height="206" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="116" /> <Shape ID="DesignTable:TBKOMMCOLLI_TERMINART" ZOrder="11" X="1225" Y="0" Height="206" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="116" />
<Shape ID="DesignTable:TBKOMMCOLLI_PAKET_POS_LS" ZOrder="5" X="1278" Y="332" Height="96" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="46" /> <Shape ID="DesignTable:TBKOMMCOLLI_PAKET_POS_LS" ZOrder="6" X="1278" Y="332" Height="96" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="46" />
<Shape ID="DesignTable:TBKOMMCOLLI_SDGPOSITIONEN" ZOrder="4" X="523" Y="142" Height="172" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" /> <Shape ID="DesignTable:TBKOMMCOLLI_SDGPOSITIONEN" ZOrder="5" X="523" Y="142" Height="172" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:TBKOMMCOLLI_TEXTSCHLUESSEL" ZOrder="1" X="835" Y="417" Height="115" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" /> <Shape ID="DesignTable:TBKOMMCOLLI_TEXTSCHLUESSEL" ZOrder="3" X="835" Y="417" Height="115" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:TBKOMMCOLLI_HINWEIS" ZOrder="3" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBKOMMCOLLI_HINWEIS" ZOrder="1" X="384" Y="212" Height="246" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:VWHUP_REPORT1" ZOrder="2" X="1108" Y="298" Height="305" Width="250" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" /> <Shape ID="DesignTable:VWHUP_REPORT1" ZOrder="4" X="1108" Y="298" Height="305" Width="250" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VWKOMMCOLLI_UEBERSICHT" ZOrder="2" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
</Shapes> </Shapes>
<Connectors> <Connectors>
<Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" ZOrder="13" LineWidth="11"> <Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID" ZOrder="14" LineWidth="11">
<RoutePoints> <RoutePoints>
<Point> <Point>
<X>206</X> <X>206</X>
@@ -31,7 +32,7 @@
</Point> </Point>
</RoutePoints> </RoutePoints>
</Connector> </Connector>
<Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" ZOrder="12" LineWidth="11"> <Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_POS_KOPF_ID" ZOrder="13" LineWidth="11">
<RoutePoints> <RoutePoints>
<Point> <Point>
<X>357</X> <X>357</X>
@@ -43,7 +44,7 @@
</Point> </Point>
</RoutePoints> </RoutePoints>
</Connector> </Connector>
<Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" ZOrder="11" LineWidth="11"> <Connector ID="DesignRelation:FK_TBKOMMCOLLI_PAKET_KOPF_MANDANT_ID1" ZOrder="12" LineWidth="11">
<RoutePoints> <RoutePoints>
<Point> <Point>
<X>840</X> <X>840</X>
@@ -55,7 +56,7 @@
</Point> </Point>
</RoutePoints> </RoutePoints>
</Connector> </Connector>
<Connector ID="DesignRelation:FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" ZOrder="9" LineWidth="11"> <Connector ID="DesignRelation:FK_TBKOMMCOLLI_TERMINART_MANDANT_ID" ZOrder="10" LineWidth="11">
<RoutePoints> <RoutePoints>
<Point> <Point>
<X>342</X> <X>342</X>

View File

@@ -414,7 +414,8 @@ Public Class frmMain
btnAddPaket.Enabled = True btnAddPaket.Enabled = True
tsinfolabel.Text = "Vorgang abgebrochen" tsinfolabel.Text = "Vorgang abgebrochen"
tsinfolabel.Visible = True tsinfolabel.Visible = True
ListBoxFortras.Items.Clear() ListBoxFortras.DataSource = Nothing
'ListBoxFortras.Items.Clear()
txtFreitext.Text = "" txtFreitext.Text = ""
txtHinweistext.Text = "" txtHinweistext.Text = ""
Catch ex As Exception Catch ex As Exception
@@ -668,7 +669,8 @@ Public Class frmMain
btnAddPaket.Enabled = True btnAddPaket.Enabled = True
tsinfolabel.Text = "Vorgang abgebrochen" tsinfolabel.Text = "Vorgang abgebrochen"
tsinfolabel.Visible = True tsinfolabel.Visible = True
ListBoxFortras.Items.Clear() 'ListBoxFortras.Items.Clear()
ListBoxFortras.DataSource = Nothing
frmPrintOptions.ShowDialog() frmPrintOptions.ShowDialog()
GridControlLHM.DataSource = Nothing GridControlLHM.DataSource = Nothing
@@ -743,7 +745,13 @@ Public Class frmMain
Dim ins = String.Format("INSERT INTO TBKOMMCOLLI_HINWEIS (SENDUNGNR,TEXTSCHLUSSEL_ID,TEXT,ERSTELLTWER) VALUES ({0},{1},'{2}','{3}')", CURRENT_SENDUNG, cmbTextschlüssel.SelectedValue, txtHinweistext.Text, Environment.UserName) Dim ins = String.Format("INSERT INTO TBKOMMCOLLI_HINWEIS (SENDUNGNR,TEXTSCHLUSSEL_ID,TEXT,ERSTELLTWER) VALUES ({0},{1},'{2}','{3}')", CURRENT_SENDUNG, cmbTextschlüssel.SelectedValue, txtHinweistext.Text, Environment.UserName)
If ClassDatabase.Execute_non_Query(ins) = True Then If ClassDatabase.Execute_non_Query(ins) = True Then
Me.txtHinweistext.Text = "" Me.txtHinweistext.Text = ""
If IsNothing(ListBoxFortras.DataSource) Then
Me.ListBoxFortras.DataSource = Me.TBKOMMCOLLI_HINWEISBindingSource
Me.ListBoxFortras.DisplayMember = "BEZEICHNUNG"
Me.ListBoxFortras.ValueMember = "GUID"
End If
Me.TBKOMMCOLLI_HINWEISTableAdapter.Fill(Me.MyDataset.TBKOMMCOLLI_HINWEIS, CURRENT_SENDUNG) Me.TBKOMMCOLLI_HINWEISTableAdapter.Fill(Me.MyDataset.TBKOMMCOLLI_HINWEIS, CURRENT_SENDUNG)
tsinfolabel.Visible = True tsinfolabel.Visible = True
tsinfolabel.Text = "Update Textschlüssel erfolgreich - " & Now.ToString tsinfolabel.Text = "Update Textschlüssel erfolgreich - " & Now.ToString
End If End If
@@ -774,7 +782,13 @@ Public Class frmMain
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim del = String.Format("DELETE FROM TBKOMMCOLLI_HINWEIS WHERE GUID = (SELECT MAX(GUID) FROM TBKOMMCOLLI_HINWEIS WHERE SENDUNGNR = {0})", CURRENT_SENDUNG) Dim del = String.Format("DELETE FROM TBKOMMCOLLI_HINWEIS WHERE GUID = (SELECT MAX(GUID) FROM TBKOMMCOLLI_HINWEIS WHERE SENDUNGNR = {0})", CURRENT_SENDUNG)
If ClassDatabase.Execute_non_Query(del) = True Then If ClassDatabase.Execute_non_Query(del) = True Then
If IsNothing(ListBoxFortras.DataSource) Then
Me.ListBoxFortras.DataSource = Me.TBKOMMCOLLI_HINWEISBindingSource
Me.ListBoxFortras.DisplayMember = "BEZEICHNUNG"
Me.ListBoxFortras.ValueMember = "GUID"
End If
Me.TBKOMMCOLLI_HINWEISTableAdapter.Fill(Me.MyDataset.TBKOMMCOLLI_HINWEIS, CURRENT_SENDUNG) Me.TBKOMMCOLLI_HINWEISTableAdapter.Fill(Me.MyDataset.TBKOMMCOLLI_HINWEIS, CURRENT_SENDUNG)
tsinfolabel.Visible = True tsinfolabel.Visible = True
tsinfolabel.Text = "Löschen Textschlüssel erfolgreich - " & Now.ToString tsinfolabel.Text = "Löschen Textschlüssel erfolgreich - " & Now.ToString
End If End If
@@ -828,8 +842,9 @@ Public Class frmMain
Private Sub pnlHuP_VisibleChanged(sender As Object, e As EventArgs) Handles pnlHuP.VisibleChanged Private Sub pnlHuP_VisibleChanged(sender As Object, e As EventArgs) Handles pnlHuP.VisibleChanged
txtFreitext.Text = "" txtFreitext.Text = ""
txtHinweistext.Text = "" txtHinweistext.Text = ""
ListBoxFortras.Items.Clear() ListBoxFortras.DataSource = Nothing
'ListBoxFortras.Items.Clear()
End Sub End Sub

View File

@@ -1128,7 +1128,6 @@ E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debu
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\es\DevExpress.Pdf.v15.2.Core.resources.dll E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\es\DevExpress.Pdf.v15.2.Core.resources.dll
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\ja\DevExpress.Pdf.v15.2.Core.resources.dll E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\ja\DevExpress.Pdf.v15.2.Core.resources.dll
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\ru\DevExpress.Pdf.v15.2.Core.resources.dll E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\bin\Debug\ru\DevExpress.Pdf.v15.2.Core.resources.dll
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.vbprojAssemblyReference.cache
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.DocumentViewerEx.resources E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.DocumentViewerEx.resources
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.frmAbschluss.resources E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.frmAbschluss.resources
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.frmAdressChange.resources E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.frmAdressChange.resources
@@ -1147,3 +1146,4 @@ E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.exe E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.exe
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.xml E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.xml
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.pdb E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.pdb
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\KommiCollo\obj\x86\Debug\KommiCollo.vbprojAssemblyReference.cache

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +1,2 @@
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.msi E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.msi
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.wixpdb E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.wixpdb

View File

@@ -1,2 +1,2 @@
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.msi E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.msi
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.wixpdb E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.wixpdb

View File

@@ -6,5 +6,5 @@ obj\Debug\Product.wixobj
obj\Debug\SetupWix.wixproj.BindContentsFileListde-DE.txt obj\Debug\SetupWix.wixproj.BindContentsFileListde-DE.txt
obj\Debug\SetupWix.wixproj.BindOutputsFileListde-DE.txt obj\Debug\SetupWix.wixproj.BindOutputsFileListde-DE.txt
obj\Debug\SetupWix.wixproj.BindBuiltOutputsFileListde-DE.txt obj\Debug\SetupWix.wixproj.BindBuiltOutputsFileListde-DE.txt
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.msi E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.msi
E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.3.wixpdb E:\SchreiberM\Visual Studio\GIT\SchaumKommi\SchaumKommiCollo\SetupWix\bin\Debug\KommiCollo-x86-2.2.0.4.wixpdb