In reply to Rshields' Post #6, the problem you're having is that you are not referencing your button controls as an array. You have an array of buttons, so you must reference them like this.
VB Code:
  1. P11B(0).Enabled = True
The Count, Item, etc. properties you are getting refer to the array, not the individual buttons that are in the array.