You are doing a
Then inside this you are again definingVB Code:
Do Until rst.EOF
This would reset the recordset. The .Movenext would no more be effective. Don't set it again.VB Code:
DisplaySQL = "SELECT * FROM DataGrid" Set rst = oSQL.Execute(DisplaySQL)




Reply With Quote