BC30220: класс делегата " <classname> " не имеет метода Invoke, поэтому выражение этого типа не может быть целевым объектом вызова методаBC30220: Delegate class '<classname>' has no Invoke method, so an expression of this type cannot be the target of a method call
Вызов Invoke
через делегат завершился неудачей, поскольку Invoke
не реализован в классе делегата.A call to Invoke
through a delegate has failed because Invoke
is not implemented on the delegate class.
Идентификатор ошибки: BC30220Error ID: BC30220
Исправление ошибкиTo correct this error
Убедитесь, что экземпляр класса делегата был создан с помощью
Dim
оператора и что процедура была назначена экземпляру делегата с помощьюAddressOf
оператора.Ensure that an instance of the delegate class has been created with aDim
statement and that a procedure has been assigned to the delegate instance with theAddressOf
operator.Выберите код, реализующий класс делегата, и убедитесь, что он реализует
Invoke
процедуру.Locate the code that implements the delegate class and make sure it implements theInvoke
procedure.