refreshing data in combo boxes on a form

D

Del

When I want to update the data in a combo box on a form both of the following
lines of code work. Is one better than the other?

DoCmd.Requery "cboLine"
or
Me.cboLine.Requery
 
Top