Re: Copy/Duplicate button
Giovanni,
I am not sure I am interpreting your issue correctly so I think you are looking at this incorrectly but could be wrong.
A grid is usually used to report or access existing records on a database.
A form is used to maintain (add, delete, change) records on a database.
What you might want to do is:
- Create a form for table x.
- Create a grid for the same table x.
- Link the grid to the form using the menu on the left side of the grid application called “Link”. You should use the primary key as the linking field to get to the form.
- Execute your form, it should display all the existing records on the database.
- Select a record to maintain (change, delete), this will access the form.
- If no records exist, you can set the “Link” to display the “New” button when no records exist so that you can get to the form and insert a new record.
Hope this is correct if not, my apologies.