A
Anthony Viscomi
I have the following VBA that is executed on a form's "Load" event:
Dim TotalDueX As Integer
TotalDueX = DSum("[Cost]", "dbo_course", "[SS]" = Me.SS)
Me.Total_Due = TotalDueX
End Sub
I receive an "Invalid use of Null" error, any thoughts?
Thanks!
Anthony
Dim TotalDueX As Integer
TotalDueX = DSum("[Cost]", "dbo_course", "[SS]" = Me.SS)
Me.Total_Due = TotalDueX
End Sub
I receive an "Invalid use of Null" error, any thoughts?
Thanks!
Anthony