Events

  • Thread starter Thread starter Lou
  • Start date Start date
L

Lou

Why do my Events defined in an Interface show up as procedures
I have this so I can use it as a COM object in VB6. The object browser
in VB^ does not show it as an event (with the lightning symbol) but as a
procedure????
All the other definitions show and work correctly.

public interface IMyInterface

{

event MyDelegate MyEvent;

event MessageHandler MessageArrived;
 
Back
Top