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.
Only Sub procedures can be declared to be partial methods. For example, the following code causes this error because partialMethod is a function.
' Partial Private Function partialMethod(ByVal n As Integer) As Integer
' End Function
Error ID: BC31437
To correct this error
Convert what you are declaring as a partial method to a Sub.
Do not use a partial method in this case.