Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
CEFSentinel RunError(217) - Lazarus
-
- Posts: 12
- Joined: Mon Nov 18, 2019 9:23 pm
CEFSentinel RunError(217) - Lazarus
All demos that still use CEFSentinel fail to start. The debugger reports error 217.
You do not have the required permissions to view the files attached to this post.
- salvadordf
- Posts: 4572
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: CEFSentinel RunError(217) - Lazarus
Hi,
Thanks for reporting this issue!
Please, download CEF4Delphi again.
TCEFSentinel was missing one unit in the "uses" section and the call to the wrong "AllocateHWnd" was causing this error.
Thanks for reporting this issue!

Please, download CEF4Delphi again.
TCEFSentinel was missing one unit in the "uses" section and the call to the wrong "AllocateHWnd" was causing this error.
- salvadordf
- Posts: 4572
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: CEFSentinel RunError(217) - Lazarus
I also forgot to put some conditional directives around TOnHandledMessageEvent in uCEFBufferPanel to build CEF4Delphi in Linux. I'll add this in the next update :
Code: Select all
{$IFDEF MSWINDOWS}
TOnHandledMessageEvent = procedure(Sender: TObject; var aMessage: TMessage; var aHandled : boolean) of object;
{$ENDIF}
-
- Posts: 12
- Joined: Mon Nov 18, 2019 9:23 pm
Re: CEFSentinel RunError(217) - Lazarus
It works, thank you very much!