One thing I've never understood about Access is how it addresses some things.
In the immediate window I want to see the forms Record Source. It's name is "frmMain"
I type ? frmMain.recordsource
Run-time error '424': Object required
Then ? Form_frmMain.recordsource
Run-time error '424': Object required
Eventually I find this works
? Forms![frmMain].recordsource
But why? What Object can it possibly want? I'm sure the first two do work under some circumstances.
In the immediate window I want to see the forms Record Source. It's name is "frmMain"
I type ? frmMain.recordsource
Run-time error '424': Object required
Then ? Form_frmMain.recordsource
Run-time error '424': Object required
Eventually I find this works
? Forms![frmMain].recordsource
But why? What Object can it possibly want? I'm sure the first two do work under some circumstances.