Exceeded maximum number of selection sets
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an app that uses ssget many times, more than 128 (as mentioned in some groups) but always using the variable for storing the <selection set> as local variable, inside each function the require it, but started to crash, and I don't understand how to solve it, because as mentioned, each selection is defined in a local variable, set to nil and doing a (GC) after getting each set
I have controlled the times it works before crashing and for example the first time reach to do some more than 600 ssget's, but after crushing If I start the function again, It do some times 20 or 10 and crash again, as if selections werent defined in local vaiables
The point is I need to insert many different dwg's and control the points intersection with existing objects, and can not finish to insert the dwg's and exit
Is there a way to solve it?
I have read the forums and topics about this, but this problem, should happens when not using local variables, other wise my app will never arrive to almost 600 the first time
I will thanks in advance any help about this