Hello,
I have a tabular gallery interface and each screen has a form from the same table on it. How can I save all of these without using the submitform for each form on the save button? All of these forms are from the "Company" table.
Here is the code on my OnSelect property of the save button:
SubmitForm(Form_General_Information);SubmitForm(Form_Company_Contacts);SubmitForm(Form_ST_Registrations_Filings);SubmitForm(Form_Additional_Information);SubmitForm(Form_Nexus_Analysis);
Set(
varCompanyRecord,
LookUp(
Companies,
lg_companyid = varCompanyRecord.lg_companyid
)

Any help to be more efficient would be great!
Thanks.