I have an existing form and i want this form now, to inherit from another form.
For a new form i know how to do this, just go on File > New > Other > Inheritable items and select the father form. But what about an already existent form ?
Here is what i tried, change this :
type
TFrmMyForm = class(TForm)
To this :
type
TFrmMyForm = class(TFrmFatherForm)
But it doesn't seem to work, as FrmMyForm isn't importing FrmFatherForm components.
Is there a way to achieve this ?
Thanks