Control Set Error

Hello everyone,

I have a strange situation on my Desktop App. An exception is thrown with the description
Error 207 : Invalid column name ‘bcButton$15’.

Nowhere in my code I have something like this bcButton$15.
bcButton is a control set that I use for buttons on a Window which i inform using a timer.
Can this error be a xojo exception when it cannot find a button or something else?

Has anyone an idea on this?

Thank you in advance.

you access a not existing button(index)?

button(0)
1?
button(2)
button(3)
button(4)

I have 49 buttons which i never make them nil. I only make them invisible and I just set some properties.And I found on my logs this exception. It looks like an sql error but there is nowhere in my code a query using bcbutton$15. That s why I am wondering if there is something wrong with control sets.

  1. What desktop platform or OS is this?

  2. What version of the IDE?

  3. Show us the code around where the error occurs, indicating which line has the error and exactly what the error is.

  4. Are you sure that the items in the control set have index values from 0 to 48?

1 Like