We would like to build a community for Small Basic programmers of any age who like to code. Everyone from total beginner to guru is welcome. Click here to register and share your programming journey!


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
LDArray extension
#7
(11-18-2024, 11:23 PM)Yumda Wrote: I am trying to understand the LDlist Objects,  here is what I am confused about:
vocabList[1] = "alpha"
vocabList[2]= "Beta"
vocabList[3]= "Zeta"
vocabList[4] = "Eta"

...

So, what am I doing wrong here?

(translated by Google translator)

Hello Yumda.  Shy
It seems to me that you are not looking at the information that is in the link: https://litdev.uk/LitDev.html

You initialize the first element of the vocabList[1] array in the same way you would use to work with a regular SB array: vocabList[1] = "alpha"

But, you want to have a LIST, not a SB array. Therefore, you should use methods that are designed to work with a LIST.

LDList.Add(vocabList, "alpha")
LDList.Add(vocabList, "Beta")
LDList.Add(vocabList, "Zeta")
LDList.Add(vocabList, "Eta")

( I will continue later )  Smile
Reply


Messages In This Thread
LDArray extension - by Yumda - 11-17-2024, 10:05 PM
RE: LDArray extension - by litdev - 11-17-2024, 11:20 PM
RE: LDArray extension - by Yumda - 11-18-2024, 01:34 AM
RE: LDArray extension - by z-s - 11-18-2024, 04:36 AM
RE: LDArray extension - by AbsoluteBeginner - 11-18-2024, 09:17 AM
RE: LDArray extension - by Yumda - 11-18-2024, 11:23 PM
RE: LDArray extension - by AbsoluteBeginner - 11-19-2024, 06:54 AM
RE: LDArray extension - by AbsoluteBeginner - 11-19-2024, 07:24 AM
RE: LDArray extension - by AbsoluteBeginner - 11-19-2024, 09:56 AM
RE: LDArray extension - by Yumda - 11-19-2024, 01:30 PM
RE: LDArray extension - by litdev - 11-19-2024, 01:53 PM
RE: LDArray extension - by AbsoluteBeginner - 11-19-2024, 05:16 PM
RE: LDArray extension - by Yumda - 11-20-2024, 01:22 AM
RE: LDArray extension - by litdev - 11-20-2024, 07:40 AM
RE: LDArray extension - by AbsoluteBeginner - 11-20-2024, 07:57 AM
RE: LDArray extension - by jrmrhrb00 - 11-20-2024, 02:23 PM
RE: LDArray extension - by Yumda - 11-21-2024, 12:22 AM
RE: LDArray extension - by AbsoluteBeginner - 11-21-2024, 06:17 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)