From debugger:
...
TControl.DoSetBounds tsCorrelation:TTabSheet Old=0,0,0,0 New=0,0,115712,58112
ERROR in LCL: TControl.DoSetBounds tsCorrelation:TTabSheet Invalid bounds
Creating gdb catchable error:
...There's attempt to set width > 100000 and therefore is raised exception.
I guess there's is some wrong combination of autosizing and anchoring.
It is the case of tsCorrelation, tsStatistics and others.
Just open mainform.lfm and search for string "ClientWidth". Repair all occurrences, like:
ClientHeight = 58112
ClientWidth = 115712and others, where are values around 80000, those are surely incorrect.
After this, I was able to switch to form with F12 and project compiled and ran.