J
Jason
Hi,
How can i count the records of an access table with ado?
Is it something like this? I know i'm missing something.
Dim rst As ADODB.Recordset
Dim strSQL As String
strSQL = "SELECT * From mytable"
rst.open strsql
rst.recordcount
debug.print rst
rst.Close
Set rst = Nothing
How can i count the records of an access table with ado?
Is it something like this? I know i'm missing something.
Dim rst As ADODB.Recordset
Dim strSQL As String
strSQL = "SELECT * From mytable"
rst.open strsql
rst.recordcount
debug.print rst
rst.Close
Set rst = Nothing