I have a form creating an invoice/order.
Apon double clicking part of the record I am launching another form to edit data in the current record on the parent form (details that may or may not be added on a standard order).
I think I can use
but was wondering if I could use something in the recordsource so that I can bind it. I'd like to be able to attach the controls to the fields via the property editor. If not, can I just use
?
Thanks
Mike
Apon double clicking part of the record I am launching another form to edit data in the current record on the parent form (details that may or may not be added on a standard order).
I think I can use
Code:
Me.Recordset = Me.parent.recordset
Code:
cboMyCombo.controlsource = [Field In Underlying Recordsource]
Thanks
Mike