Sometime, if you use old Delphi version (Delphi 5,6,7 etc) you may successfully compile your application but on attempt to run you may get error message like 'property ExplicitWidth does not exists'
The cause of this error - our attempts to keep multi-version support. Delphi IDE inserts some new, version specific properties in DFM files and that cannot be checked by compiler. In most cases there is properties like
ParentBackground
BevelInner
DesignSize
PopupMode
ExplicitWidth/Height
All these properties just not used by PivotCube anyway and can be just removed from DFM file. We try to catch these properties and remove references for them...but sometimes it happens. My apologizes.