View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
HKS HKS is offline
external usenet poster
 
Posts: 10
Default VBA code for the Check Boxes in a form

I created 10 checkboxes in the Excel form. The name of the checkboxes are
"CheckBox1...10." Then, I wrote the below For next statement in the VBA to
list the checked checkboxes name, but I encounterred problem, why?

For X = 1 To 10
If CheckBox(X) = True Then
Y = Y + 1 'Array counter
ReDim Preserve vArrayItem(0 To Y)
vArrayItem(Y) = CheckBox(X).Caption
End If
Next X


Thanks in advance
HKS