refreshing data in combo boxes on a form

  • Thread starter Thread starter Del
  • Start date Start date
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
 
Back
Top