Welcome Guest Search | Active Topics | Sign In | Register

Method not Found... Options
grchen168
Posted: Thursday, May 23, 2024 5:16:11 AM
Rank: Advanced Member
Groups: Member

Joined: 8/26/2021
Posts: 44
Using WebBrowser/WebView control (2024.0.96) in C# WinForm project,
In the WinForm, I put a WebControl on it, and then, at runtime,
I bind the webview to the web control as:

private EO.WebBrowser.WebView webview;
public WinForm() // Constructor for WinForm
{
webview=new EO.WebBrowser.WebView();
webview.Create(webControl1.Handle);
}

private void WinForm_Load(object sender,EventArgs e) // Form Load event
{
webview.LoadHtml(html).WaitOne(); //html is a valid HTML string already
}

But, at run time, Exception is thrown:
Method not Found: 'Void EO.WinForm.WebControl.set_WebView(EO.WebBrowser.WebView);'

How to do with it?
eo_support
Posted: Thursday, May 23, 2024 1:08:03 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,166
Hi,

This does not make sense. Can you reproduce the same problem if you run it on a different computer?

Thanks!
grchen168
Posted: Friday, May 24, 2024 3:09:36 AM
Rank: Advanced Member
Groups: Member

Joined: 8/26/2021
Posts: 44
It runs fine at other machine.
Maybe it is caused by "damaged" dll files on that specific environment.
Thanks for reply.


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.