D
David Branch
I try to convert the code for this article from c# to vb and just can not
get it to work.
(53): 'Public Event UpdateView(sender As Object, e As System.EventArgs)' is
an event, and cannot be called directly. Use a 'RaiseEvent' statement to
raise an event.
Public Event UpdateView As EventHandler
Private Sub OnUpdateView()
If Not (UpdateView Is Nothing) Then
UpdateView(Me, EventArgs.Empty)
End If
End Sub 'OnUpdateView
Nested Grids for Hierarchical Data
http://msdn.microsoft.com/msdnmag/issues/03/10/CuttingEdge/
get it to work.
(53): 'Public Event UpdateView(sender As Object, e As System.EventArgs)' is
an event, and cannot be called directly. Use a 'RaiseEvent' statement to
raise an event.
Public Event UpdateView As EventHandler
Private Sub OnUpdateView()
If Not (UpdateView Is Nothing) Then
UpdateView(Me, EventArgs.Empty)
End If
End Sub 'OnUpdateView
Nested Grids for Hierarchical Data
http://msdn.microsoft.com/msdnmag/issues/03/10/CuttingEdge/