Re: How do I use CEF Components in a DLL form (Delphi)
Posted: Fri Jul 06, 2018 9:53 am
Hi,
I've never tried to put all CEF4Delphi code inside a DLL but I can suggest you this :
I've never tried to put all CEF4Delphi code inside a DLL but I can suggest you this :
- CEF4Delphi can only be initialized and finalized outside the DLL's initialization and finalization sections. Create a couple of custom functions to initialize and finalize CEF4Delphi manually.
- CEF3 can only be initialized once per process. This means that you can only call CEF4Delphi.StartMainProcess once.
- You must use a different EXE for the subprocesses.