I need to clear the structure.
Currently I clear it by looping through the structures.
I would like to use something like ClearStructure but the manual seems to imply that ClearStructure can only be used with pointers.
I'm not clear, as it were, how best to proceed.
Could someone please advise me of the most efficient way of clearing the structure?
Code: Select all
EnableExplicit
Structure BookList
List BookNames$()
EndStructure
Structure SeriesList
List Series.BookList()
EndStructure
Structure Details
List Authors.SeriesList()
EndStructure
Global Library.Details