how to create an array of buttons on a form to reference by index.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Trying to create an array of check boxes to read by way of a loop. Vba won't
let me create an array of the same control on mt form ? Anyone know how I can
create this array on mt access 2003 form ?
 
Access does not provide for control arrays. You need to add the controls
needed during design or redesign your app so that a control array is not
necessary....i.e., use a subform. For example, you might create a table
with the following fields:

ID
Caption
Value

Then use this table as the basis for a subform to represent the checkboxes
needed in your app.
 
Back
Top