RVGrINVCL RVWINGrln not compiling errors in Delphi 11 Alexandrian
Posted: Fri Oct 29, 2021 5:53 pm
TRichView Version 19.5 VCL
In unit RVGrINVCL these two procedures are not compiliing.
With this message
[dcc32 Error] RVGrInVCL.pas(65): E2137 Method 'DrawImageList' not found in base class
With this message:
[dcc32 Error] RVGrInVCL.pas(68): E2137 Method 'GetImageListSize' not found in base class
In unit RVWINGrln this is not compling and has this message:
[dcc32 Error] RVWinGrIn.pas(165): E2137 Method 'DrawImageList' not found in base class
Any ideas?
In unit RVGrINVCL these two procedures are not compiliing.
With this message
[dcc32 Error] RVGrInVCL.pas(65): E2137 Method 'DrawImageList' not found in base class
Code: Select all
procedure DrawImageList(RVCanvas: TRVCanvas; Images: TCustomImageList;
ImageIndex: Integer; X, Y, Width, Height: TRVCoord; BlendColor: TRVColor;
PixelsPerInch: Integer); override;
[dcc32 Error] RVGrInVCL.pas(68): E2137 Method 'GetImageListSize' not found in base class
Code: Select all
procedure GetImageListSize(Images: TCustomImageList;
ImageIndex: Integer; PixelsPerInch: Integer;
var Width, Height: Integer); override;
In unit RVWINGrln this is not compling and has this message:
[dcc32 Error] RVWinGrIn.pas(165): E2137 Method 'DrawImageList' not found in base class
Code: Select all
procedure DrawImageList(RVCanvas: TRVCanvas; Images: TCustomImageList;
ImageIndex: Integer; X, Y, Width, Height: TRVCoord;
BlendColor: TRVColor; PixelsPerInch: Integer); override;