I have a following lines of code:
However it causes an error "Type Mismatch"
When i change
to:
everything works fine. However, I'm not sure why; could somone be so kind as to explain in few sentances the concept of the DAO vs nothing specified?
Code:
Dim rs As Recordset
Me.Requery
Set rs = Me.Recordset
When i change
Code:
Dim rs As Recordset
Code:
Dim rs As [B]DAO[/B].Recordset