Steve Maughan 26 Posted June 27, 2022 Has anyone been able to install TChromeTabs for Delphi 11.1? It's missing a *.groupproj file for Delphi 11. Any steps would be appreciated. It was in GetIt but isn't anymore. Thanks, Steve Share this post Link to post
corneliusdavid 214 Posted June 27, 2022 It's still in Delphi 10.4 GetIt but since Delphi 11 support has not yet been added, it's not in the D11 GetIt. You can add it yourself quite easily, though: just clone the GitHub project to your development area, copy the Delphi 10.4 packages to a new folder, and open them in Delphi 11. Then you can save the updated projects to your own .groupproj file. I had no trouble compiling/installing them in D11.1. 1 Share this post Link to post
corneliusdavid 214 Posted June 27, 2022 I've created a pull request to add Delphi 11 to the repository. Share this post Link to post
Fr0sT.Brutal 900 Posted June 28, 2022 10 hours ago, Steve Maughan said: It's missing a *.groupproj file for Delphi 11 General approach: grab a full repository and open the highest project available. RAD is pretty good in upgrading project files from older versions Share this post Link to post
Steve Maughan 26 Posted June 29, 2022 (edited) @corneliusdavid & @Fr0sT.Brutal — Many thanks! I managed to compile for 32 bit but not for 64 bit. It needs "DesignIDE.dcp" which is available in the following location: C:\Program Files (x86)\Embarcadero\Studio\22.0\lib\win32\debug\designide.dcp It seems it's not available for Delphi 11.1 64 bit — any ideas? Edited June 29, 2022 by Steve Maughan Share this post Link to post
Steve Maughan 26 Posted June 29, 2022 (edited) Strangely, on my old computer running Delphi 10.4 I only had a win32 version of DesignIDE.dcp yet TChromeTabs installed fine on win64 via GetIt Edited June 29, 2022 by Steve Maughan Share this post Link to post
corneliusdavid 214 Posted June 29, 2022 13 minutes ago, Steve Maughan said: I managed to compile for 32 bit but not for 64 bit. It needs "DesignIDE.dcp" There are two packages, ChromeTabs_R.dpk and ChromeTabs_D.dpk. The "_R" is the run-time only and supports both 32-bit and 64-bit. The _D package is the Delphi component and is the one that gets installed in Delphi and does not ship with applications. Delphi is 32-bit only so components also have to be 32-bit only. So if you compile both 32-bit and 64-bit platforms of ChromeTabs_R.dpk then install only the 32-bit platform ChromeTabs_D.dpk, you'll have 32-bit and 64-bit support for the components in your application. I just compiled and ran the 64-bit version of the demo that comes with the package so I know it works. 1 Share this post Link to post
Steve Maughan 26 Posted June 29, 2022 @corneliusdavid many thanks! I didn't know that only the 32 bit runtime was needed. Everything seems to work perfectly! Share this post Link to post