B
Bill H.
I want to populate a form with a few "constants" to speed data entry.
So, on the form's curren property, I used:
If Me.NewRecord Then
Me.Cost = mBaseCost
Me.Photo.Picture = ""
Me.CouncilDistrict = mCD
End If
Problem is, that can go on forever. Meaning that even if the user does not
put in any info, the new record button can be clicked on and on and on.
So, how do I stop a new record from being added to the table when the only
data entered is the "constant" data?
Thx.
So, on the form's curren property, I used:
If Me.NewRecord Then
Me.Cost = mBaseCost
Me.Photo.Picture = ""
Me.CouncilDistrict = mCD
End If
Problem is, that can go on forever. Meaning that even if the user does not
put in any info, the new record button can be clicked on and on and on.
So, how do I stop a new record from being added to the table when the only
data entered is the "constant" data?
Thx.