I have written a program in 2003, and I am testing it in 2010 as some users will have 2003 and some will have 2010. I have a menu button that works in 2003, but not in 2010. The code behind it is:
DoCmd.OpenForm "frmBoxRetrievalParameters", , , , acFormEdit
I have another similar button that DOES work, with this code:
DoCmd.OpenForm "frmDCLParameters", , , , acFormEdit
The only difference I can see between the two forms being opened is that the first is attached to a table, and the second is not. When I push the first button in 2010 nothing happens at all. I do not get any error messages.
Any idea why this might be happening?
TIA
Holly
DoCmd.OpenForm "frmBoxRetrievalParameters", , , , acFormEdit
I have another similar button that DOES work, with this code:
DoCmd.OpenForm "frmDCLParameters", , , , acFormEdit
The only difference I can see between the two forms being opened is that the first is attached to a table, and the second is not. When I push the first button in 2010 nothing happens at all. I do not get any error messages.
Any idea why this might be happening?
TIA
Holly