Hello,
I want to use a structure that contains an array of another structure.
Something like that :
Type tPost
sSkillsList() as string
End Type
Type tRaceParams
sPostsList() as tPost
End Type
Global raceDatas as tRaceParams
It seems that this declaration is correct but I can’t redimension the array sPostsList().
I search and found nothing about this kind of structures or how to use it.
Is it possible to have such thing? What am i doing wrong?