(Access 2003) I have a single user form that has been designed with no associated table. It's sole purpose is to collect user entered criteria then perform a database search.
I have recently added a save facility so that separate search criterias can be held in an accompanying save table. The intention is to allow users the ability to save a new criteria, delete an existing one, navigate to previous criteria saves, edit previous saves. The criterias can be quite extensive and there is a requirement to run /edit-run the same criterias at a later date as the database grows. so this is a handy feature.
Problem: While I am able to set the control source of e.g. a combobox to the savetable, I can't get record navigation to work..."DoCmd.GoToRecord , , acNext" fails, as does "DoCmd.GoToRecord , tablename, acPrevious".
I think this problem is due to the user form not being bound in some way to this new savetable.
I have recently added a save facility so that separate search criterias can be held in an accompanying save table. The intention is to allow users the ability to save a new criteria, delete an existing one, navigate to previous criteria saves, edit previous saves. The criterias can be quite extensive and there is a requirement to run /edit-run the same criterias at a later date as the database grows. so this is a handy feature.
Problem: While I am able to set the control source of e.g. a combobox to the savetable, I can't get record navigation to work..."DoCmd.GoToRecord , , acNext" fails, as does "DoCmd.GoToRecord , tablename, acPrevious".
I think this problem is due to the user form not being bound in some way to this new savetable.