Chat etc.

This commit is contained in:
ms
2020-05-12 14:55:03 +02:00
parent 46a9991b2a
commit be5014153d
54 changed files with 1993 additions and 263 deletions

View File

@@ -0,0 +1,14 @@
Public Class uscntr_Columns
Private Sub uscntr_Columns_Load(sender As Object, e As EventArgs) Handles Me.Load
Me.BackColor = Color.Red
End Sub
Private Sub btnOK_Click(sender As Object, e As EventArgs) Handles btnOK.Click
Me.BackColor = Color.LightGreen
End Sub
Private Sub btnDelete_Click(sender As Object, e As EventArgs) Handles btnDelete.Click
Me.BackColor = Color.Red
End Sub
End Class