11-19-2024, 07:24 AM
Yumba,
You write: newarray = LDList.Copy(vocabList)
When the "vocabList" object was a SB array, this code did not work because the LDList.Copy() method is designed to create a copy of a LIST, not a SB array. Now that we have created a LIST named "vocabList", the LDList.Copy() method will work correctly.
You write: newarray = LDList.Copy(vocabList)
When the "vocabList" object was a SB array, this code did not work because the LDList.Copy() method is designed to create a copy of a LIST, not a SB array. Now that we have created a LIST named "vocabList", the LDList.Copy() method will work correctly.