I need to put many ProgressBars in a form. I created a control object for them so I can change their values by for loop:

Dim progCtrls() As Control = {ProgressBar1, ProgressBar2, ProgressBar3}

The problem is that I can't get to the value property of the ProgressBars in the control object:
progCtrls(i).

Can anyone help on this?
tnx