A anaylor01 Well-Known Member Licensed User Longtime User Feb 19, 2016 #1 I need to insert the values of the spinner into a table. The amount of values of the spinner will be different. So is there a way to get a count of values of the spinner? Then loop through and insert them into a table?
I need to insert the values of the spinner into a table. The amount of values of the spinner will be different. So is there a way to get a count of values of the spinner? Then loop through and insert them into a table?
barx Well-Known Member Licensed User Longtime User Feb 19, 2016 #2 You could, using the spinner.size to get count and then loop through the items. You could also add the items to the table when you load the spinner, then no need to re-count, etc Upvote 0
You could, using the spinner.size to get count and then loop through the items. You could also add the items to the table when you load the spinner, then no need to re-count, etc