TWebForm.Parent don't work in this case

I have some forms that I show inside a TWebHTMLDiv.
But If use the following technique for create and show forms, Parent is ignored.
Example:
...
frm := TForm1.Create(self);
// procedures to execute before form loading
frm.Popup := false;
await(TForm1, frm.Load());
// procedures to execute after form loading
frm.Parent := WebHTMLDiv1;
try
await(frm.Execute);
// procedures to execute after form close
finally
frm.Free;
end;

How to solve?

Ps.: (I don't want use CreateNew() because this case permits to launch the procedures between the creation, the show and the release of the forms).
Thanks!

With this particular order, it is indeed not currently supported.
We'll further investigate and consider this for a future version.

Thanks Bruno.
I will try to be clearer though.
By implementing this feature or simply correcting it (Form.parent=xxx) you maintain a very convenient and intuitive "procedural" approach, avoiding the use of callbacks. The code is thus more readable and easier to implement, thanks to "await".
The forms that we already use with this approach (but which are popups) are perfect, and above all appear...fast. So just extend it to the forms with the parent to be able to use it everywhere, perhaps adding a "variant" Form.Create(parent).

But the main reason for my request is this:

If I use CreateNew() I can manage the data, via parameters in callbacks, only after the form has been created and displayed (@AfterCreate). So I get the form displayed in 2 shots, first the form is showed... and then the data arrives. This is not a nice effect, especially with slow connections.
Instead, with the system mentioned above, I can manage all the necessary phases BEFORE the form is visible, with a nice instant display effect.
I hope I was clear, otherwise I'll make a demo :-)
Thanks