I am having trouble figuring out how to share a form between two found sets in the same table at the same time.
Main form (clList) shows a list view of found set for table
A method may find a group of other records in the table and show them in a list form in dialog: (clSearchList - uses a separate found set)
a button on the formindialog list should trigger a method to display the details of the selected record in clSearchList:
application.showFormInDialog( forms.clDetail0, -1, -1, -1, -1, ‘Client Details’, true, false, false)
When this method is executed the clDetail0 form is displayed but it is displaying fields from the record of the first found set (clList).
How do I specify that I want to display the fields from the second found set attached to clSearchList? I want to preserve the original found set on the Main form.