Hello.
Might you know how can I access a field that is part of the underlying query of a form, from another control on that form?
I have a "Comments" field that is part of formA underlying query, but is not visible on formA (not bound to any control!).
I would like to retrieve and update that field from another textbox on the father form of formA (mainForm).
Intuitively, for the default value of my textbox, I'd write something like:
Me!formA.Comments
If there's no way to access a field of the underlying query of a form, the workaround would be to place a hidden control on formA, bound to that field, but I'd like to avoid this ugly solution.
Thanks!
Might you know how can I access a field that is part of the underlying query of a form, from another control on that form?
I have a "Comments" field that is part of formA underlying query, but is not visible on formA (not bound to any control!).
I would like to retrieve and update that field from another textbox on the father form of formA (mainForm).
Intuitively, for the default value of my textbox, I'd write something like:
Me!formA.Comments
If there's no way to access a field of the underlying query of a form, the workaround would be to place a hidden control on formA, bound to that field, but I'd like to avoid this ugly solution.
Thanks!