jesu 3 Posted November 3 Hello. I have a program with this code: uses ...frCoreClasses...; .. justificacion: TFrxHalign; .. if whatever then justificacion := haCenter else justificacion := haRight; It works in previous versions, but not in Delphi 13. [dcc32 Error] myform.pas(20): E2003 Undeclared identifier: 'TFrxHalign' What has changed? Thanks. Share this post Link to post
Lars Fosdal 1987 Posted November 3 Are you using the 32-bit or 64-bit IDE? FastReports failed to install in the 64-bit IDE for me. Share this post Link to post
ŁukaszDe 55 Posted November 3 My report for installation problem: http://embt.atlassian.net/servicedesk/customer/portal/1/RSS-4414 Share this post Link to post
ŁukaszDe 55 Posted November 3 I check on my code, and have same problem with TFrxHaling. Maybe they move it to another unit. Share this post Link to post
DelphiUdIT 275 Posted November 3 Try to include 'frBaseGraphicsTypes". 1 Share this post Link to post
jesu 3 Posted November 4 18 hours ago, DelphiUdIT said: Try to include 'frBaseGraphicsTypes". That worked. Thanks. Share this post Link to post