Question: How do I populate a listbox?

I'd like to populate a listbox from elements of a matrix, but need some help.

I created an empty listbox with name ListBox0, and try to add a name from the matrix.

DataSet := Matrix(3, 3, [[Tim, 21, 80], [Tom, 23, 86], [Tinker, 25, 90]])

with*DocumentTools

SetProperty("ListBox0", DataSet[1, 1])

Please Wait...