hi, how do i display all my record in the Access DB using a Datagrid...can anyone help me with the codes

this is my coding:

Dim SQL As String
Dim cmbRS As ADODB.Recordset
Dim Cnn As ADODB.Connection
Dim RS As ADODB.Recordset
Dim sqlstr As String

sqlstr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & App.Path & "\" & DataEnteries.DBname.Text

Set Cnn = New ADODB.Connection
Cnn.Open sqlstr

SQL = "SELECT * FROM " & month.Text & ""
Set RS = New ADODB.Recordset
RS.Open SQL, Cnn, adOpenDynamic, adLockOptimistic
Set DataGrid1.DataSource = RS

got error: the rowset is not bookmarkable

Ah Xing