Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
An Implements statement was encountered in an invalid location.
Error ID: BC31053
To correct this error
Place Implements statements immediately following any Inherits statements, but before any declarations. For example:
Class Derived Inherits Base Implements One Sub SubOne() Implements One.Method1 ' Add code to implement the method. End Sub End Class