I'm adding valus to a combo box from a table column in a database. The values in the column are not unique meaning there are rows with same values. I would like th combobox to only have one of each value. Can anyone help? I'm using the code below.

VB Code:
  1. With OraDynaset
  2.     If .RecordCount <> 0 Then
  3.         Do While Not .EOF
  4.        
  5.             cboDefLine.AddItem .Fields("Line_ID")
  6.         .MoveNext
  7.         Loop
  8.     End If