Update 2021-11-20

This commit is contained in:
2021-11-20 22:03:13 +01:00
parent 8d1cf410d7
commit 1d43955e2b
42 changed files with 1150 additions and 61 deletions

View File

@@ -0,0 +1,11 @@
Public Class frmBemerkung
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
DialogResult = DialogResult.OK
Me.Close()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
DialogResult = DialogResult.Cancel
Me.Close()
End Sub
End Class