Page 1 of 1

Problem with Virtual Array Data demo

Posted: Wed May 07, 2025 10:02 pm
by 18699868
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?

Re: Problem with Virtual Array Data demo

Posted: Fri May 09, 2025 8:50 am
by Marc
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

Re: Problem with Virtual Array Data demo

Posted: Fri May 09, 2025 9:25 am
by Marc
..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.

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.
Thank you for the bug report.

Regards,
Marc

Re: Problem with Virtual Array Data demo

Posted: Fri May 09, 2025 4:40 pm
by 18699868
Thank you. That is an easy fix.