-
I am trying to add more objects to a form (text boxes, labels, check boxes, etc.) and VB is preventing me from doing this. I already have a ton of controls on this form, but I wanted more. (I am using the MS tab tool to do this). I didn't realize VB had a maximium number of objects on a form and does anyone know how to increase the number? Thank You.
-
Use control arrays where ever you can. VB can have a maximum of (if I remember correctly) 256 controls or control arrays.
Since a control array can hold 32767 controls you get the maximum total of 8388352 (256 * 32767).