compile error TFormBeforeShownMessage in Delphi XE8 #253
Closed
ScottHollows
started this conversation in
General
Replies: 2 comments
-
This issue is fixed on version 6.0.0-beta3 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I will install that. Thank you |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I installed the latest version of Skia3Delphi in a Delphi XE8 install
Im getting this compile error when comping in DEBUG build configuration.
The error does not occuring when compiloing in RELEASE build configuration
[dcc32 Error] Skia.FMX.Graphics.pas(3435): E2003 Undeclared identifier: 'TFormBeforeShownMessage'
The code that it is failing on is
FILE Skia.FMX.Graphics.pas
constructor TSkCanvasService.Create(const ACurrent: IFMXCanvasService);
begin
inherited Create;
FCurrent := ACurrent;
{$IFDEF DEBUG}
FFormBeforeShownMessageId := TMessageManager.DefaultManager.SubscribeToMessage(TFormBeforeShownMessage, FormBeforeShownHandler);
{$ENDIF}
end;
P.S I did the right click >> Enable Skia and also added these USES to the forms that use Skia3Delphi to use WEBP images
USES Skia, Skia.Fmx;
What do I need to do to fix the error ?
I cant find any file that has the source code for TFormBeforeShownMessage
Environment
Beta Was this translation helpful? Give feedback.
All reactions