Page 1 of 1

User Checkbox Usable range?

PostPosted: Sun Nov 06, 2016 4:12 pm
by ger21
Can I use any range of numbers for Custom Checkboxes?

It looks like 500 and up should be fine, or should I go up to 20,000?

Re: User Checkbox Usable range?

PostPosted: Sun Nov 06, 2016 6:48 pm
by ger21
Sounds like a plan.

Re: User Checkbox Usable range?

PostPosted: Sun Nov 06, 2016 6:56 pm
by cncdrive
Virtually all screen items IDs are infinate (int32 size limit) except the LEDs.
This is because the items are in Lists, except the LEDs which are in arrays and the reason for that is that all LEDs must be continously updated and it takes much less resources to do this with storing them in an array.
The max. number of LED IDs is currently 1000.

Re: User Checkbox Usable range?

PostPosted: Sun Nov 06, 2016 7:25 pm
by ger21
Thanks.