MS Diverses Customizing

This commit is contained in:
Developer01
2024-07-31 11:10:21 +02:00
parent 2039b614c1
commit c15a0ee5a0
36 changed files with 1140 additions and 1612 deletions

View File

@@ -383,6 +383,7 @@ Public Class frmEntities
Dim result As MsgBoxResult = MsgBox(msg, MsgBoxStyle.YesNo, "Question:")
If result = MsgBoxResult.Yes Then
INTEGER1 = CurrentID
STRING1 = FORM_TITLETextBox.Text
frmNewKombiForm.ShowDialog()
End If
End If
@@ -455,4 +456,11 @@ Public Class frmEntities
'.. und starten
BW_Entity.RunWorkerAsync()
End Sub
Private Sub NAMETextBox_LostFocus(sender As Object, e As EventArgs) Handles NAMETextBox.LostFocus
If FORM_TITLETextBox.Text = String.Empty Then
FORM_TITLETextBox.Text = NAMETextBox.Text
End If
End Sub
End Class