Hi Darren,
You can try the multi-DLL builds and see if it works better for you:
http://www.essentialobjects.com/doc/6/install/multi_dll_build.aspxIf that still does not help, you can pre-load the browser engine by creating a hidden WebView through the ThreadRunner class. It will be something like this:
Code: C#
ThreadRunner threadRunner = new ThreadRunner();
WebView webView = threadRunner.CreateWebView();
This will initialize the browser engine.
Please remember to destroy the above WebView when your application close down:
Otherwise this additional WebView may prevent your application from closing down properly.
Hope this helps. Please feel free to let us know if you still have any questions.
Thanks!