Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Hi folks,Just trying to tidy up my code and have an issues assigning members to a structure that contains a Delegate.I tried this initially and it works, but, it's long and tedious. Public Delegate Sub NAH()Structure sDirective Public DirectiveName As String Public DirectiveFunction As NAHEnd StructureDim DirectiveList(10) As sDirectivethen ...With DirectiveList(0) .DirectiveName = "END" .DirectiveFunction = New NAH(AddressOf DirectiveEND)End WithThis works.I have 15 elements.I would like to do something like thisDim DirectiveList() as sDirective = {{"END", New NAH(Addressof DIRECTIVEEND}, etc}Any ideas?Thanks.
Hi folks,
Just trying to tidy up my code and have an issues assigning members to a structure that contains a Delegate.
I tried this initially and it works, but, it's long and tedious.
Public Delegate Sub NAH()
Structure sDirective
Public DirectiveName As String
Public DirectiveFunction As NAH
End Structure
Dim DirectiveList(10) As sDirective
then ...
With DirectiveList(0)
.DirectiveName = "END"
.DirectiveFunction = New NAH(AddressOf DirectiveEND)
End With
This works.
I have 15 elements.
I would like to do something like this
Dim DirectiveList() as sDirective = {{"END", New NAH(Addressof DIRECTIVEEND}, etc}
Any ideas?
Thanks.