I have the following code....

VB Code:
  1. commSQL.Connection = cn
  2.                 commSQL.CommandText = "Select Stores From EmpStores_View Where " & _
  3.                 "LoginName = '" & Request.Cookies("LoginName").Value & "' Order By Stores"
  4.                 datRead = commSQL.ExecuteReader
  5.  
  6.                 strDistStores = ""
  7.                 Do While datRead.Read
  8.                     If strDistStores.Trim() = "" Then
  9.                         strDistStores = "And (Location = '" & _
  10.                         datRead.Item("Stores") & "'"
  11.                     Else
  12.                         strDistStores += " Or Location = '" & _
  13.                         datRead.Item("Stores") & "'"
  14.                     End If
  15.                 Loop
  16.                 strDistStores += ")"

Now when I'm done here, I want to bind this same datasource to a combo box.

What I don't know how to do is get to the first record after I run it through my loop.

Thanks