Solutionmodel: new form

Just started with my first Solutionmodel but have problems already creating a new form.
I use the Servoy crm data.
This should show an empty form, but I get an error saying that ‘dynamicform’ already exists, and that does’nt.

var myForm = solutionModel.newForm(‘dynamicform’, ‘example_data’, ‘customers’, ‘svy_Cherry’, false, 800, 600)

Ron

if it says that then that is true. there is already a form with that name
did you run that newForm() twice with that name?

You are right Johan, the first time I did not get an error, so the form was created (but not showed).
i added the following line and all works fine.

forms.dynamicform.controller.show()

Thanks.
Ron