ReadNextRow
Previous Top Next

Reads the next row.
Returns true if it was successful.
Syntax: ReadNextRow

Example:
Cmd.CommandText = "SELECT * FROM Products"
Reader.Value = Cmd.ExecuteReader
Do While Reader.ReadNextRow = TRUE
      ListBox1.Add(Reader.GetValue(0))
Loop
Reader.Close