RE: C# Add Controls/Sections/Tabs to Form via the CRM SDK
Thanks for your suggestion!
I looked into the formXML in the database and indeed it has everything I need. I decided to go with simple copy-paste of the form and modifying it with replace all in VS Code.
My concern is that I see that every customization of the form(tabs, sections, controls) has an unique ID.
If I copy the formXML of another entity and delete all the ID's and then use that edited form to update an entity in the database, will it automatically create new unique ID's for all the customizations (tabs, sections, controls) ? Or will I break the entity/instance ?
Do you have a suggestion on how to do this safely ?
To be clear, I want to duplicate the form since I have exactly the same custom fields in both entities. I can use replace all to change the prefixes. Ex: Replace All xx_client1 with xx_client2 and delete all unique IDs. Then I would use that form to update formXML of Client2 in the database in SystemForm table.