Carrying Value to next record

S

Steven M. Britton

Please read all the way through - - - - - -

This won't work, the yourComboBox.Value is the Value from
the Previous Record -
-----Original Message-----
In the form's AfterUpdate eventhandler, put in code along
the lines of
If Me.NewRecord Then
yourComboBox.DefaultValue = yourComboBox.Value
End If

You will have to change YourComboBox to suit your form.

Hope This Helps
Gerald Stanley MCSD
.
..
 
Top