abhishek007p Active Member Licensed User Longtime User Feb 23, 2013 #1 How can i load Spinner list from List collection? Using the following code gives me error. Spinner1.Clear Spinner1.AddAll(MyList) MyList is a list object loading from CSV file. -- abhishek
How can i load Spinner list from List collection? Using the following code gives me error. Spinner1.Clear Spinner1.AddAll(MyList) MyList is a list object loading from CSV file. -- abhishek
NJDude Expert Licensed User Longtime User Feb 23, 2013 #2 Can you post your code? Last edited: Feb 23, 2013 Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 24, 2013 #3 You cannot add a table to a spinner directly. The list returned from StringUtils.LoadCSV is made of arrays of strings (one array for each row). Upvote 0
You cannot add a table to a spinner directly. The list returned from StringUtils.LoadCSV is made of arrays of strings (one array for each row).