Show form from DLL in TScrollBox
问题 I posted this online: Show form from DLL in TScrollBox What i am trying to do is call and show a form in a Delphi TScrollBox . Not as Show or ShowModal Example but not with any DLL: Form1.Parent:= ScrollBox; Form1.Show; How do i use this example from a DLL with a form inside Can anyone provide an example? Regards, 回答1: You cannot pass a Delphi object between a DLL and a host executable. That's because objects can only be operated on in the module in which they are created. Now, if you were