Reconfigure for GIT

This commit is contained in:
2017-03-26 20:00:03 +02:00
commit 00637826ab
8056 changed files with 535977 additions and 0 deletions
@@ -0,0 +1,21 @@
Public Class SpreadUserControl
Private _SpreadInfo As String
Public Sub New()
InitializeComponent()
End Sub
Property SpreadInfo As String
Get
Return _SpreadInfo
End Get
Set(value As String)
_SpreadInfo = value
End Set
End Property
Private Sub SpreadsheetControl1_CellEndEdit(sender As Object, e As DevExpress.XtraSpreadsheet.SpreadsheetCellValidatingEventArgs) Handles SpreadsheetControl1.CellEndEdit
If SpreadInfo <> "1" Then
SpreadInfo = "1"
Else
SpreadInfo = "0"
End If
End Sub
End Class