
Control Arrays in Custom Controls
I have a VB6 custom control I'm trying to re-implement in VB.Net. The
overall control acts as a keypad for use on a Touch Screen system. Each
"key" on the keypad is a button control, loaded as an array. This way,
trapping events is all done in one place - as is setting captions, fonts
colors etc. It also helps when I add another row or column of buttons - I
can dynamically load / unload them as required.
First Problem: VB.Net does not want to automatically upgrade my Control
Project. I guess I can live with that although its a bit {*filter*}.
Second Problem: I can't see a way to create an array of buttons in VB.Net.
At this point I assume I'm missing something as I would think creating an
array of controls would be a common requirement for many VB developers. Any
ideas what I might be doing wrong?
Ian Mooney