G
Gary
I am using Access 2000-2003 on XP Pro OS.
I have a linked table, and there are 3 records in that linked table.
When I try to check on the number of records it only show 1.
This is my VBA Code:
Dim db As Database
Dim T As DAO.Recordset
Dim x As Integer
Set db = CurrentDb()
Set T = db.OpenRecordset("Missing Formations", dbOpenDynaset)
x = T.RecordCount
I have tried dbOpenTable, dbOpenSnapshot, etc and they all show 1 record.
If I change the table from link to a regular table, I see 3 records.
When I open the linked tabe, I see 3 records. I reference are set correct
for DAO. (i.e. DAO 3.6)
Can someone please help.
Thanks You,
Gary
I have a linked table, and there are 3 records in that linked table.
When I try to check on the number of records it only show 1.
This is my VBA Code:
Dim db As Database
Dim T As DAO.Recordset
Dim x As Integer
Set db = CurrentDb()
Set T = db.OpenRecordset("Missing Formations", dbOpenDynaset)
x = T.RecordCount
I have tried dbOpenTable, dbOpenSnapshot, etc and they all show 1 record.
If I change the table from link to a regular table, I see 3 records.
When I open the linked tabe, I see 3 records. I reference are set correct
for DAO. (i.e. DAO 3.6)
Can someone please help.
Thanks You,
Gary