I'm trying to make some kind of pseudo-MDI interface using the following code:
FormChild := TFReference.Create(Application);
Winapi.Windows.SetParent(FormChild.Handle, MainForm.Handle);
FormChild.Show;
Everything works well, except that the tooltips on these child forms are gone. How do I get tooltips to show up on my child forms?
UPDATED:
I followed the advice of Sertac Akyuz and now everything works as it should.