Hi @Ididar ,
View Form is used to merely display columns is read-only state, while Edit Form can be used for editing and viewing records.
Now, when using Edit Form:
1. Creating new Record => Use NewForm(Form1) to set Form as new FormMode which will be initiated to create a new Record in the datasource. All columns will be blank so User can enter data.
2. When editing existing record => Use EditForm(Form1) and then pass which Record you want to edit in "item" property of the Form.
3. For Viewing the EditForm in view state, simply change FormMode.View which will turn entire form to act as ViewForm.
4. Note: In order to show the Form when in playmode, make sure the Form is initalized as NewForm() or EditForm().
Hope this helps