From the main form? Here's how I would do it - where 'sfrmTest' is the name
of the subform control on the mainform:
With Me.sfrmTest.Form.RecordsetClone
If Not (.BOF And .EOF) Then
.MoveLast
End If
Me.txtRecordCount = .RecordCount
End With
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.