When I try to inherit TDataModule Delphi, we consider the descendant class as a form that provides them with properties such as font and client properties. (exception "property does not exist" at runtime)
TixDataModule = class(TDataModule);
TDM = class(TixDataModule)
end;
What can I do to make it work?
source
share