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.
Function UpdateCustAuto() as boolean
Me.txtCustAuto = Left(Me.txtFirstName & " ",1) & _
Left(Me.txtLastName & " ",1) & _
IIf(IsNull(Me.txtDOB),"00/00/0000",Format(Me.txtDOB,"mmddyyyy")
End Function
Function UpdateCustAuto() as boolean
Me.txtCustAuto = Left(Me.txtFirstName & " ",1) & _
Left(Me.txtLastName & " ",1) & _
IIf(IsNull(Me.txtDOB),"00000000",Format(Me.txtDOB,"mmddyyyy")
End Function