I'm trying to test a new value and old value in a subform contained within my main form. I have a line that is causing an error:
TRACE_MEMBER_ID_OLD = Nz(Forms("frm_EDIT_CURRENT_FULLGROWER").Controls(" EDIT_GROWER_TRACEABILITY_DATASHEET").Form.Controls ("MEMBER_ID").OldValue, "0")
The error states that the object does not support this property or method. How do I find out what properties/methods are supported with this object?
CementCarver