I have an easy question but no adequate reference material in front of me at the moment. How do I load a combo box with a dataset? Here's my code:

Dim strSQL As String
Dim strConn As String
Dim objDA As SqlClient.SqlDataAdapter
Dim objDS As New Data.DataSet()
Dim intCounter As Integer
Dim strResult As String

strConn = "Initial Catalog=pubs;Data Source=(local);" _
& "User ID=sa;password=;"
strSQL = "My SQL Statement"

objDA = New SqlClient.SqlDataAdapter(strSQL, strConn)
objDA.Fill(objDS)

'I want to load my combo here. How do I access the fields from the dataset?

Thanks in advance.