Hi EO forum,
currently I evaluate the EO.WebBrowser Control for a .NET 2.0 WinForm application. When I try to drag and drop the control in VS 2010 designer from the toolbox into my user control I get the following error:
"FileNotFoundException: File or Assembly 'EO.Base' or one dependency not found"
I have EO.Base, EO.WebBwrowser and EO.WebEngine assmblies referenced within my project (Base, WebBrowser, WebEngine). I also copied all assemblies to the output directory.
When I add the control after the InitializeComponent call the control will be displayed correctly.
Quote:
var webControl = new WebControl();
var webView = new WebView();
webControl.WebView = webView;
webView.Url = "http://www.essentialobjects.com";
webControl.Dock= DockStyle.Fill;
webPanel.Controls.Add(webControl);
Is it possible to drop the control within the VS designer? Do I miss something?
best regards,
Uli