I have a single table with numerous fields and records.
My Main_Form is used to input a lot of individual fields’ data and I’d like to have a Slave_Form that only displays a large Memo field that is tied to, and always synchronised with, the record displayed by the Main_Form (and vice versa).
The Slave_Form has the Popup property set to True and its Modal property set to False so that the focus can be on, and entries made on, either form whilst they are both open. (The forms will be on different screens.)
The Slave_Form will only be opened from the Main_Form, but can be closed by either a Close_Button on the Slave_Form, or automatically with the closing of Main_Form.
Moving from one record to another will only be initiated from the Main_Form. (I have set the Slave_Form.NavigationButtons and Slave_For.RecordSelectors properties to False so they cannot be used to move between records from the Slave_Form.)
My issue is how to keep the record displayed on the Main_Form and Slave_Form synchronised at all times.
In anticipation, many thanks for the kind assistance that will point me in the right direction to resolve this issue.
Cheers
Trevor