Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function AfterStart()
AfterStart = [property].[startdate] + 10
End function
Public Function AfterStart()
AfterStart = DLookUp("startdate", "property","prop_id = me.prop_id") + 10
End Function
Public Function AfterStart() as date
dim strWhere as string
strWhere = "prop_id = " & me.prop_id
debug.print strWhere
AfterStart = DLookUp("startdate", "property",strWhere) + 10
debug.print afterStart
End Function