S
Steve
I have defined a structure of;
Private Structure Menu
Private MenuID as string
Private Label as string
End Structure
....and I would like to create and initialize an array of type "Menu". I have
tried numerous variations on the theme;
Public arrMenu as Menu = {{"a","b"},{"c","d"},{"e","f"}}
....but all to no avail. Is this possible? If so how?
Thanks
Steve
Private Structure Menu
Private MenuID as string
Private Label as string
End Structure
....and I would like to create and initialize an array of type "Menu". I have
tried numerous variations on the theme;
Public arrMenu as Menu = {{"a","b"},{"c","d"},{"e","f"}}
....but all to no avail. Is this possible? If so how?
Thanks
Steve