Actually, I'm impressed you aren't getting NULL REference errors... you've defined the array, but it's empty.... (why is the array an array of labels anyways).


Code:
Dim LabelArray(8) As Label = {new Label, new Label, new Label, new Label, new Label, new Label, new Label, new Label}
NOW you can use the array of labels (why is it labels again?)

-tg