C
Carlos Fandango
I am converting a C# sample and have not use VB in years, I suspect this
will not be my first post;
I have a event declared as;
Namespace Callisto.Utils.UI.Navigation
' <summary>
' A handler for several events generated by the Page class.
' </summary>
Public Delegate Sub PageEventHandler(ByVal sender As Object, ByVal e As
PageEventArgs)
End Namespace
When I try and use it in the code below I get the error from the title, any
pointers?
Public Class Page
Inherits System.Windows.Forms.UserControl
' <summary>
' Event fired when the frame is navigating into the page.
' </summary>
<Description("Occurs when the frame is navigating into the page."), _
Category("Behaviour")> _
Public Event PageEnter As PageEventHandler()
will not be my first post;
I have a event declared as;
Namespace Callisto.Utils.UI.Navigation
' <summary>
' A handler for several events generated by the Page class.
' </summary>
Public Delegate Sub PageEventHandler(ByVal sender As Object, ByVal e As
PageEventArgs)
End Namespace
When I try and use it in the code below I get the error from the title, any
pointers?
Public Class Page
Inherits System.Windows.Forms.UserControl
' <summary>
' Event fired when the frame is navigating into the page.
' </summary>
<Description("Occurs when the frame is navigating into the page."), _
Category("Behaviour")> _
Public Event PageEnter As PageEventHandler()