Das hier scheint nicht zu funktionieren:
Code: Alles auswählen
Structure _block
tile.l
EndStructure
Structure _field
blocklist._block[5]
EndStructure
Global TestField._field
ReDim TestField\blocklist(10)
Code: Alles auswählen
Structure _block
tile.l
EndStructure
Structure _field
blocklist._block[5]
EndStructure
Global TestField._field
ReDim TestField\blocklist(10)
Code: Alles auswählen
Structure _block
tile.l
EndStructure
Structure _field
Array blocklist._block(5)
EndStructure
Global TestField._field
ReDim TestField\blocklist(10)
Code: Alles auswählen
Structure _field
Dim blocklist._block(10)
EndStructure
Code: Alles auswählen
Structure _field
blocklist._block(10)
EndStructure
Code: Alles auswählen
Structure _block
tile.l
EndStructure
Structure _field
Array blocklist._block(5)
EndStructure
Global TestField._field
ReDim TestField\blocklist(10)