What is wrong with my code?
The 'MB' database had 20 fields, but the only thing that will be added to the listbox is 20x 'ADODB.Internalfield'

Please help me

VB Code:
  1. Dim objConn As ADODB.Connection = New ADODB.Connection()
  2.         Dim objRs As ADODB.Recordset = New ADODB.Recordset()
  3.         Dim i As Integer
  4.         objConn.ConnectionString = "Provider=SQLOLEDB;data Source=CC200392-B; Initial Catalog=MB;User Id=sa;Password=***;"
  5.         objConn.Open()
  6.         objRs.Open("Select * from Users", objConn, ADODB.CursorTypeEnum.adOpenKeyset, ADODB.LockTypeEnum.adLockOptimistic)
  7.         For i = 0 To objRs.Fields.Count - 1
  8.             ListBox1.Items.Add(objRs.Fields(i))
  9.         Next
  10.         objRs.Close()
  11.         objRs = Nothing
  12.         objConn.Close()
  13.         objConn = Nothing