It's all the same problem.
I have a bunch of checkboxes that are being created on a userform at runtime. The quantity created varies depending on the length of a list in a certain range.
Would you recommend using an object array in a class module to handle their click events? Should I try a collection? Or is there a better approach?
Edit: Also, every tenth checkbox I need a new multipage page. Is there a straightforward way to validate b/10 as an integer (eg something along the lines of IsInt(b/10), which obviously doesn't work)? Tried like "If Not (b/10) Is Decimal Then", I don't know how to use a data type in an expression like that.