First create solution

This commit is contained in:
2017-03-08 11:21:27 +01:00
commit a2fb86bacf
5508 changed files with 1082238 additions and 0 deletions
@@ -0,0 +1,12 @@
Public Class ImportsForm
WriteOnly Property SetMessage(_Message As String)
Set(value)
Me.LabelControl2.Text = value
Me.LabelControl2.Visible = True
End Set
End Property
Private Sub ImportsForm_Load(sender As Object, e As System.EventArgs) Handles Me.Load
Me.LabelControl2.Visible = False
End Sub
End Class