G
Guest
I can't figure out the coding error that the debugger catches on my form at
startup (the code runs as a current event)--the last line is highlighted.
Can someone figure out my problem. Thanks so much
If IsNull(Me!SaleExpires) Then
Select Case Me!BillingID
Case Is = 1
strInterval = "y"
Case Is = 2
strInterval = "q"
Case Is = 3
strInterval = "m"
End Select
End If
Me!SaleExpires = DateAdd("d", 3, DateAdd(strInterval, 1, Date))
startup (the code runs as a current event)--the last line is highlighted.
Can someone figure out my problem. Thanks so much
If IsNull(Me!SaleExpires) Then
Select Case Me!BillingID
Case Is = 1
strInterval = "y"
Case Is = 2
strInterval = "q"
Case Is = 3
strInterval = "m"
End Select
End If
Me!SaleExpires = DateAdd("d", 3, DateAdd(strInterval, 1, Date))