it needs to be called from a module... After it is open ... I need to update a label on the form with a record count...
1:
2:
3:
4:
5:
6:
7:
8:
9:
dim inNum as Long
DoEvents
Forms!form2.Open
Do Until rsCust.EOF
inNum = me.rsCust.recordcount
<--- Update "Label2" on Form2 with record count in recordset...