** I just want to know how to convert this code to vb.net using the same details I hope you could help me guys
Set rs = New ADODB.Recordset
rs.Open "Select Location from tblDestination where Destination = '" & cbodestination.Text & "' Group by Location", conn, 3, 1
Do While Not rs.EOF
cbolocation.AddItem rs![Location]
rs.MoveNext
Loop
End Sub
**
