HTML Editor control conversion to .NET 2.0

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

I am working with the control available at

http://www.windowsforms.net/default.aspx?tabindex=6&tabid=47&ItemID=10&mid=142

I have noticed that on lines 599 - 603 of the file HtmlEditor.cs there the
following errors.

Error 25 Ambiguity between 'mshtml.DispHTMLDocument.onkeypress' and
'mshtml.HTMLDocumentEvents_Event.onkeypress'
C:\RESCHINIDEV\BENEFITS\HtmlEditor\HtmlEditor.cs 599 27 HtmlEditor

Error 26 Ambiguity between 'mshtml.DispHTMLDocument.onclick' and
'mshtml.HTMLDocumentEvents_Event.onclick'
C:\RESCHINIDEV\BENEFITS\HtmlEditor\HtmlEditor.cs 600 27 HtmlEditor

Error 27 Ambiguity between 'mshtml.DispHTMLDocument.onfocusin' and
'mshtml.HTMLDocumentEvents_Event.onfocusin'
C:\RESCHINIDEV\BENEFITS\HtmlEditor\HtmlEditor.cs 601 27 HtmlEditor

Error 28 Ambiguity between 'mshtml.DispHTMLDocument.onfocusout' and
'mshtml.HTMLDocumentEvents_Event.onfocusout'
C:\RESCHINIDEV\BENEFITS\HtmlEditor\HtmlEditor.cs 602 27 HtmlEditor

Error 29 Ambiguity between 'mshtml.DispHTMLDocument.onselectionchange' and
'mshtml.HTMLDocumentEvents_Event.onselectionchange'
C:\RESCHINIDEV\BENEFITS\HtmlEditor\HtmlEditor.cs 603 27 HtmlEditor


does anyone know how I would fix this? I don't work with C# much mainly VB,
thanks!
 
Back
Top