Problem:
When check boxes are created they are assigned a name "check box ######" Where ##### increments from 1 - n. VB will create check boxes greater than 65535, but will error on a select method. The check box numbering sequence continues through the life of the spread sheet.
Is it possible to completely remove all knowledge of an object?
If you take this VB code, run the macro, let it run till it gets to 65535 check boxes and you'll see the error. "Select method of CheckBox class failed" on the 65536'th.
The workaround is to delete the work sheet, make new sheet which restarts the numbering. (in 6 months to a year you'll get to fix it again!)
to duplicate the symptom let this run till it stops with the error
Sub make_site_chk_box()
'
k = 1
Do While k < 66000
i = 1
Do While i < 10
' rt, dn,width, height
ActiveSheet.CheckBoxes.Add(i * 65, 0, 50, 20).Select
With Selection
.name = "box " & k
.Characters.Text = "box " & k
.LinkedCell = a10
.OnAction = "rm_chk_boxes"
End With
i = i + 1
k = k + 1
Loop
ActiveSheet.CheckBoxes.Delete
Loop
Range("A1").Select
End Sub
Verified on Office 2000 and Office XP.
Fred.
When check boxes are created they are assigned a name "check box ######" Where ##### increments from 1 - n. VB will create check boxes greater than 65535, but will error on a select method. The check box numbering sequence continues through the life of the spread sheet.
Is it possible to completely remove all knowledge of an object?
If you take this VB code, run the macro, let it run till it gets to 65535 check boxes and you'll see the error. "Select method of CheckBox class failed" on the 65536'th.
The workaround is to delete the work sheet, make new sheet which restarts the numbering. (in 6 months to a year you'll get to fix it again!)
to duplicate the symptom let this run till it stops with the error

Sub make_site_chk_box()
'
k = 1
Do While k < 66000
i = 1
Do While i < 10
' rt, dn,width, height
ActiveSheet.CheckBoxes.Add(i * 65, 0, 50, 20).Select
With Selection
.name = "box " & k
.Characters.Text = "box " & k
.LinkedCell = a10
.OnAction = "rm_chk_boxes"
End With
i = i + 1
k = k + 1
Loop
ActiveSheet.CheckBoxes.Delete
Loop
Range("A1").Select
End Sub
Verified on Office 2000 and Office XP.
Fred.