Hi all,
I have a combo box with the following row source:
It works completely fine in the form itself, but when the form is accessed via the navigation subform that users will use to access it, it stops working, and instead prompts me for a value of Forms.FRM_PROTOCOL.SetStudy.
I can't find anything on the web about how to refer to forms within a navigation subform. Can anyone tell me how I need to tweak the syntax to allow this to work in the overall navigation structure?
Thanks!!
I have a combo box with the following row source:
Code:
SELECT distinct TBL_PROTOCOL.[PROTOCOL NUMBER] FROM TBL_PROTOCOL WHERE (([STUDY NAME]=Forms.FRM_PROTOCOL.SetStudy)) ORDER BY TBL_PROTOCOL.[PROTOCOL NUMBER];
It works completely fine in the form itself, but when the form is accessed via the navigation subform that users will use to access it, it stops working, and instead prompts me for a value of Forms.FRM_PROTOCOL.SetStudy.
I can't find anything on the web about how to refer to forms within a navigation subform. Can anyone tell me how I need to tweak the syntax to allow this to work in the overall navigation structure?
Thanks!!