Is it possible to, for instance, replace and free a TEdit with a subclassed component instantiated (conditionally) at runtime? If so, how and when it should be done? I've tried to set the parent to nil and to call free() in the form constructor and AfterConstruction methods but in both cases I got a runtime error.
|
|
This more generic routine works either with a Form or Frame (updated to use a subclass for the new control):
using this routine to pass the properties to the new control
use it like:
CAUTION: If you are doing this inside the AfterConstruction of the Frame, beware that the hosting Form construction is not finished yet. |
||||||
|
|
|
Being more specific, I got an Access violation error (EAccessViolation). It seems François is right when he says that freeing components at frame costruction messes with Form controls housekeeping. |
||
|
|
|
|
I tried the code in an overridden TMyForm.AfterConstruction and that worked fine. So maybe François' caution is right. Try to remove the Edit1.Free. But I doubt that this is the point, since AfterConstruction is called after all constructors are done. But what is your problem now? 'Doesn't work' is not very descriptive. Do you get an AV? Or maybe it just doesn't do anything? In that case, are you sure the code gets executed? (Try adding a breakpoint) |
||
|
|
|
|
Loesje code worked inside TMyForm.AfterConstruction method, but not in TMyFrame.AfterConstruction. Where should I place it when using this with a TFrame object? |
||
|
|
|
|
You can actually use RTTI (look in the TypInfo unit) to clone all the matching properties. I wrote code for this a while back, but I can't find it now. I'll keep looking. |
||
|
|
|
|
You have to call RemoveControl of the TEdit's parent to remove the control. Use InsertControl to add the new control.
Replace TEdit.Create to the class you want to use, and copy all properties you need like I did with Left and Top. |
||||
|
