Hi @Anonymous ,
1\ If your table has no data yet, you can use the newform function to create an item.
Add a button control and set its OnSelect property to:
NewForm(your form)
2\ If your table already has data and you want to display one of its items, you could use the item property of the form.
For example:
If you want to show the first Item on the form,you could try this formula on the Item property of you form control:
First(your table name)
And please don’t forget to set the mode of your form to edit or view.
You could use button control to set the mode of your form.
EditForm(your form)
ViewForm(your form)
Best Regards,
Wersky