I have an interface IView:
Option Explicit
Public Event OnClientSelected()
Public Property Get ClientNames() As Variant
End Property
(...)
But I am not able to implement the event in my user form. Properties and subs are allowed to implement, but event not.
Is it possible to make interface implementation with events?