I am quite new to FireMonkey.
I am shifting an old VCL project to Firemonkey. One of the requirements is I need to embed several video players in one form. The player itself needs an HWND parameter to handle its messages. It is very easy to implement using some TPanels in VCL, but I have no idea how to do that in FireMonkey since TCommonCustomForm is the only "container" class I could find that supports TWindowHandle which I can get an HWND.
I googled and found a solution that embeds a FireMonkey form into a VCL form but I failed to do that if I use two FireMonkey forms (perhaps I did it in a wrong way). Some other topics showing how to "move" controls from form1 to form2 are not what I am looking for since I need multiple HWNDs.
How can I do that in FireMonkey? Are there any other TWindowHandle objects that can meet my requirement?
TIA
Edward