Hello,
When I apply the potential fixes, it applies the code below the picture, which cause the program to throw an exception. There appears to be something missing, any idea what that may be?
Private Property ISpellCheckerAdvEditorTools_Control As Control Implements ISpellCheckerAdvEditorTools.Control
Get
Throw New NotImplementedException()
End Get
Set(value As Control)
Throw New NotImplementedException()
End Set
End Property
Private Property ISpellCheckerAdvEditorTools_CurrentWord As String Implements ISpellCheckerAdvEditorTools.CurrentWord
Get
Throw New NotImplementedException()
End Get
Set(value As String)
Throw New NotImplementedException()
End Set
End Property
Private Property ISpellCheckerAdvEditorTools_Text As String Implements ISpellCheckerAdvEditorTools.Text
Get
Throw New NotImplementedException()
End Get
Set(value As String)
Throw New NotImplementedException()
End Set
End Property
Private Property ISpellCheckerAdvEditorTools_ControlToCheck As Control Implements ISpellCheckerAdvEditorTools.ControlToCheck
Get
Throw New NotImplementedException()
End Get
Set(value As Control)
Throw New NotImplementedException()
End Set
End Property