|
Using 3rd party components
Surprise! You don't need any special to use the 3rd party component because TFormDesigner processes all components on the form as simple TComponent or TControl descendants and has no special code for different types!
All you need is register the used components by RegisterClasses procedure if you plan to use the loading form or components from the stream or file. It's not a limitation of TFormDesigner, it's a feature of VCL streaming system.
RegisterClasses([TButton,TLabel,TEdit]);
|