Hi,
This can occur when your the target Framework version of your project is set to one of the "Client Profile" option. When your target framework is "Client Profile", it excludes certain assemblies from your project, System.Design is one of them.
The EO.WebBrowser.WinForm.WebControl uses System.Design in order to offer additional design time support. So if you drag it from the toolbox, you will run into this issue. To avoid this problem, we have published the source code of the WebControl without additional design time support:
http://www.essentialobjects.com/doc/6/start/winform.aspxCode posted in the above page have the additional design time support removed, thus it no longer requires System.Design.dll and can work with client profile targets. The source code is minimum since the core features are implemented by the WebView class. In stead of using the WebControl class defined in EO.WebBrowser.WinForm.dll, you can copy the source code from the above page and put it in a file in your project, then use that class instead. This should resolve the problem for you.
Thanks!