| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Fri Dec 19, 2003 1:11 pm Post subject: How to load a panel from a DLL and attached it to main form |
|
|
How to load a panel from a DLL and attached it to main form in runtime?
|
|
| Back to top |
|
 |
Hans Galema Guest
|
Posted: Fri Dec 19, 2003 3:11 pm Post subject: Re: How to load a panel from a DLL and attached it to main f |
|
|
abc wrote:
| Quote: | How to load a panel from a DLL and attached it to main form in runtime?
|
Where/how does your TPanel reside in the DLL ?
If the TPanel is on a TForm in the DLL you coud do it like:
dllform->Panel1->Parent = this;
Where this is (in) the mainform.
or
dllform->Panel1->Parent = Appliction->MainForm;
elswhere.
Hans.
|
|
| Back to top |
|
 |
|