I want to use a Details form to make a copy of a record into a new one.
So, I added a button on my Details form and added to the OnSelect property:
NewForm(CopyForm);;
Navigate(Cópia;UnCover;{KR:BrowseGallery.Selected.KR})
This works fine. The new form is created and the context is passed.
But, the issue is I have around 80 fields, and I don't want to manually type each and everyone of the them individually.
Is there a way to pass the context of all the fields at once?
Thanks for helping!