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,25 @@
Imports DevExpress.Xpo
Imports DevExpress.Persistent.Base
Imports DevExpress.ExpressApp.ConditionalAppearance
<DefaultClassOptions()>
<NavigationItem(False)>
<CreatableItem(False)>
<Persistent("ZIPHU")>
<Indices("Zip")>
<Appearance("ZIPHU - Disable ID all time", AppearanceItemType.ViewItem, "1=1", TargetItems:="ID", Enabled:=False)> _
Public Class ZIPHU
Inherits XPLiteObject
Public Sub New(ByVal session As Session)
MyBase.New(session)
End Sub
Public Overrides Sub AfterConstruction()
MyBase.AfterConstruction()
End Sub
<Key()> Property ID As Long
Property Zip As String
Property City As String
Property County As String
End Class