When trying to run the Virtual Array demo, I get the error that VCLTee.Editor.Painter.GDIPlus is not found.
Looking at the source folder in
C:\Program Files (x86)\Steema Software\Steema TeeGrid for VCL & FMX Registered version-1.17\Sources\VCL
it seems the .pas files for that unit are there.
Looking at the compiled folder
C:\Program Files (x86)\Steema Software\Steema TeeGrid for VCL & FMX Registered version-1.17\Compiled\Delphi29.win32\Lib
they are not there.
I just ran the recompile tool with the attached settings. What do I do now?
Problem with Virtual Array Data demo
Problem with Virtual Array Data demo
- Attachments
-
- recompile tool.png (38.28 KiB) Viewed 2731 times
Re: Problem with Virtual Array Data demo
Hello,
Hmmm.... I see a "VCLTee.Editor.Painter.GDIPlus" .pas and .dfm in the sources VCL folder for my 1.17 installation and the demo runs correctly "demos\VirtualData\Array\TeeGrid_Array_Data.dproj". I do have the source pathed though. I'll check with a clean installation.
I confirm that the compiled unit is not present in Compiled\Delphi29.win32\Lib
If you add a search path in the project directly to the sources\vcl folder, does the project compile/run ok?
Regards,
Marc Meumann
Hmmm.... I see a "VCLTee.Editor.Painter.GDIPlus" .pas and .dfm in the sources VCL folder for my 1.17 installation and the demo runs correctly "demos\VirtualData\Array\TeeGrid_Array_Data.dproj". I do have the source pathed though. I'll check with a clean installation.
I confirm that the compiled unit is not present in Compiled\Delphi29.win32\Lib
If you add a search path in the project directly to the sources\vcl folder, does the project compile/run ok?
Regards,
Marc Meumann
Steema Support
Re: Problem with Virtual Array Data demo
..I've checked. VCLTee.Editor.Painter.GDIPlus is missing from the VCLTeeGrid.dpk file.
We'll add the entry for the next release (being prepared now). As an interim you can manually add it as a last line to that file before running TeeRecompile.
eg.
Thank you for the bug report.
Regards,
Marc
We'll add the entry for the next release (being prepared now). As an interim you can manually add it as a last line to that file before running TeeRecompile.
eg.
Code: Select all
VCLTee.Editor.Grid.Ticker in '..\VCL\VCLTee.Editor.Grid.Ticker.pas' {GridTickerEditor},
VCLTee.Editor.Painter.GDIPlus in '..\VCL\VCLTee.Editor.Painter.GDIPlus.pas' {GDIPlusEditor}; <--- new line
end.
Regards,
Marc
Steema Support
Re: Problem with Virtual Array Data demo
Thank you. That is an easy fix.