When upgrading EO.BrowserControl from 20.3.34 to 20.3.63 a 2nd exe also using the browser control fails with the error message
Can not find or automatically create eowp.exe. Please place this file in the same directory as EO.Base.dll and make sure...
The process cannot access the file C:\<USERDIR>\AppData\Local\Temp\eowp.20.3.63.0.
Downgrading to any lower version as above mentioned e.g. 20.3.34 shows no issue.
Sequence to start
WebBrowserRuntime.AddLicense(Initializer.License);
WebBrowserRuntime.DefaultEngineOptions.CachePath = cachePath;
WebBrowserRuntime.DefaultEngineOptions.DisableSpellChecker = true;
//
https://www.essentialobjects.com/doc/common/eowp.aspx BaseRuntime.EnableEOWP = true;
//
https://www.essentialobjects.com/forum/postst8461_Disable-zoom-in-EoWebbrowser.aspx var options = new WebEngineBrowserOptions
{
AllowZooming = false
};
WebBrowserRuntime.SetDefaultBrowserOptions(options);
// possible performance improvement. Decreases initial startup performance from 5sec to 3.5 sec.
EO.WebEngine.Engine.Default.Start();