Form code

G

George Stevenson

I've got a form that works fine now. In it I refer to the fields by putting
them in brackets. For example

If IsNull([BidAmt]) Then
[BidAmt] = 0
End If

I'd like to be able to pass the entire database record with all of its
fields to a function to be able to do some calculations among the fields.
From within the form code, how do you specify the entire data record to be
used
 
Top