Nested Structures [resolved]
I am developing a structure, and in this structure I need an array of a structure like this
VB Code:
Public Structure StrategyStruct
Public Name As String
Public Mode As RunMode
Public Structure Steps()
Public StepType As StepTypes
Public DesiredOutput As String
Public Time As String
End Structure
End Structure
Unfortunately the above code results in an End of statement expected error. Does anyone understand what I am trying to do, and have a method of doing it without an error?
thanks
kevin
ps
the error occurs on
VB Code:
Public Structure Steps[B]()[/B]