Speeding up initial form creation through solutionModel

The initial load time for a form that’s created through the solutionModel takes quite a while (couple of seconds). I’m trying to speed this up, but I’m not getting any results so far.

I’ve tried preloading in a startup-script, but this doesn’t seem to work (because of the form being created through the solutionModel?!). I also tried applying this in the startup-script: ```
databaseManager.setCreateEmptyFormFoundsets();


But that completely disables the form that is being created through the solutionModel (is that normal behaviour or a possible bug?!). Other (normal) forms are being loaded quicker.

Is there a way of speeding up the initial load time of this form that is being created with the solutionModel? Btw this form doesn't contain databaseManager.getDataSetByQuery().

Update: oops, my bad, prealoading the form in a startup-script does work! But only when I reference the form by: forms.myform.controller.show(); (although the startup of the solution is considerably slower)

Speed of a form doesnt have anything to do with if it is created by the Solution Model or just be the designer.