M
Mike
I have a form that is based off of a query. the query gathers its
information from a single table. i have a seperate (custome MFC) program
that adds records to the table.
is there a way to get a current count of records in the table?
i'm using
Dim dbsC1894 As Database
Dim intRecordCount As Integer
Set dbsC1894 = CurrentDb
intRecordCount = dbsC1894.TableDefs![tblCoils].RecordCount
RecordCount = intRecordCount
where tblCoils in the data table, and RecordCount is a value box on the form
page
what would someone suggest?
information from a single table. i have a seperate (custome MFC) program
that adds records to the table.
is there a way to get a current count of records in the table?
i'm using
Dim dbsC1894 As Database
Dim intRecordCount As Integer
Set dbsC1894 = CurrentDb
intRecordCount = dbsC1894.TableDefs![tblCoils].RecordCount
RecordCount = intRecordCount
where tblCoils in the data table, and RecordCount is a value box on the form
page
what would someone suggest?