Hello,
I'm here again for some help.

Here is what i have,
VB Code:
  1. Dim ConnectionString As String = "Provider=MSDASQL.1;Password=101098;Data Source=main;Persist Security Info=True"
  2.  
  3.         'Create my objects
  4.         Dim conn As New ADODB.Connection
  5.         Dim cmd As New ADODB.Command
  6.         Dim rs As New ADODB.Recordset
  7.  
  8.         Try
  9.             conn.Open(ConnectionString)
  10.             cmd.ActiveConnection = conn
  11.             cmd.CommandText = "SELECT customername FROM customers"
  12.  
  13.        'make a recordset here
  14.  
  15.         Catch ex As Exception
  16.             Debug.WriteLine(ex.Message.ToString)
  17.  
  18.         End Try

I need help build a recordset from that query and displaying it in a datagrid or a flexgrid.

Thanks in advance!