I have a multiple Items Form that is filtered on load to show line items for an order. (user types in order #, multiple items form shows only the lines for that order)... this is working fine.
Once the form loads, it might show 4 lines.
How can I capture the data from that row when the user clicks the row (anywhere or any field in the row... it's ok if the user has to press a button on that row)
once I capture the data I can manipulate it fine, just can't figure out how to capture the data..
for now it'd be fine to show data in msgbox to see I can capture it.
e.g.
msgbox = me.form.detail.rowUserClicked.fieldname (I know thats not code)
If the user clicks row one, I want to capture the data from row 1 for example.
Thanks in Advance.