how to fill current record with data from previous record automatically
Actually If I chose a value from a combo box I want that value to be default value for the next record
Thanks
The following code, in the Combo's On Change event will set the Default Value of the Combo;
Code:
Me.YourComboName.DefaultValue = Me.YourComboName
You may also want to clear the Default Value when the form is closed so that the Combo does not retain the last Default from the last time the form was used. The following code in the Form's On Close event should do the trick;