MS Config

This commit is contained in:
2021-12-09 11:26:07 +01:00
parent 5fc7fe8df9
commit b840291e52
21 changed files with 857 additions and 381 deletions

View File

@@ -18,7 +18,13 @@ Public Class frmAdmin_IDBEntity
Private Sub frmAdmin_IDBEntity_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Try
TBIDB_BUSINESS_ENTITYTableAdapter.Fill(DSIDB_Stammdaten.TBIDB_BUSINESS_ENTITY, PrimaryKey)
If IsInsert Then
DSIDB_Stammdaten.TBIDB_BUSINESS_ENTITY.ADDED_WHOColumn.DefaultValue = My.Application.User.UserName
TBIDB_BUSINESS_ENTITYBindingSource.AddNew()
Else
TBIDB_BUSINESS_ENTITYTableAdapter.Fill(DSIDB_Stammdaten.TBIDB_BUSINESS_ENTITY, PrimaryKey)
End If
Catch ex As Exception
ShowErrorMessage(ex)
End Try
@@ -44,7 +50,7 @@ Public Class frmAdmin_IDBEntity
ResetMessages()
If SaveData() And HasChanges Then
ShowStatus("Attribute gespeichert!")
ShowStatus("Business Entity saved!")
End If
End Sub