Form / Subform compilation

I used to have a system that autogenerated Notes Forms through the C++ API. For performance reasons, these forms had to be compiled before use, otherwise the load time was too high.

I am not generating a similar system, except it is subforms I am generating. There is a single form which has a ComputedSubform that can display any of my generated subforms.

It appears however that you cannot compile a subform.

Does this mean that there is no way to avoid the runtime compilation overhead?

Perhaps if I open the Form once with each computed subform, the form will gain the compiled code from all the subforms? If the form has to have the compiled code from all subforms, the form itself will probably take a long time to load anyway???