Version 2.0.0.5

This commit is contained in:
Jonathan Jenne
2020-03-12 15:03:39 +01:00
parent 071f11bf58
commit 1e945e4463
10 changed files with 3110 additions and 1166 deletions

View File

@@ -6827,7 +6827,6 @@ Partial Public Class MyDataset
Me.columnGUID.ReadOnly = true
Me.columnGUID.Unique = true
Me.columnIDXMAN_ID.AllowDBNull = false
Me.columnCOMMENT.AllowDBNull = false
Me.columnCOMMENT.MaxLength = 250
Me.columnTYPE.MaxLength = 50
Me.columnFUNCTION1.MaxLength = 250
@@ -15253,7 +15252,11 @@ Partial Public Class MyDataset
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")> _
Public Property COMMENT() As String
Get
Return CType(Me(Me.tableTBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn),String)
Try
Return CType(Me(Me.tableTBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn),String)
Catch e As Global.System.InvalidCastException
Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte COMMENT in Tabelle TBDD_INDEX_MAN_POSTPROCESSING ist DBNull.", e)
End Try
End Get
Set
Me(Me.tableTBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn) = value
@@ -15455,6 +15458,18 @@ Partial Public Class MyDataset
End Set
End Property
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")> _
Public Function IsCOMMENTNull() As Boolean
Return Me.IsNull(Me.tableTBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn)
End Function
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")> _
Public Sub SetCOMMENTNull()
Me(Me.tableTBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn) = Global.System.Convert.DBNull
End Sub
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")> _
Public Function IsTYPENull() As Boolean