How can get data from html to delphi
Posted: Mon Jan 28, 2019 3:39 pm
Hello, continue from this thread:
https://github.com/salvadordf/CEF4Delph ... -458157616
I noticed that when I have subprocess
GlobalCEFApp.BrowserSubprocessPath := 'ChromeProcess64.exe';
it doesn't registers the extension. Do I have to include the same code and OnWebKitInitialized in the sub process too?
I choosed to create subprocess because I want to make my app run only one instance. And when I add Mutex protection it blocks the second, third etc instance of the same app. I found out that when a second instance runs it adds a parameter --type=gpu-process or --type=renderer. So maybe another solution is to ignore Mutex check --type=* found on ParamStr(1).
What's the best way?
https://github.com/salvadordf/CEF4Delph ... -458157616
I noticed that when I have subprocess
GlobalCEFApp.BrowserSubprocessPath := 'ChromeProcess64.exe';
it doesn't registers the extension. Do I have to include the same code and OnWebKitInitialized in the sub process too?
I choosed to create subprocess because I want to make my app run only one instance. And when I add Mutex protection it blocks the second, third etc instance of the same app. I found out that when a second instance runs it adds a parameter --type=gpu-process or --type=renderer. So maybe another solution is to ignore Mutex check --type=* found on ParamStr(1).
What's the best way?