I am using:
The problem is when it runs, the datareader populates the combo box but skips the first record in the table. Does anyone know a way I can have all records returned.
Thanks
Code:
If DataRead.Read() Then
While DataRead.Read
cbCompList.Items.Add(DataRead.Item("competition"))
End While
End If
The problem is when it runs, the datareader populates the combo box but skips the first record in the table. Does anyone know a way I can have all records returned.
Thanks