Thanks..Hack
What about textboxes ? if any of the textboxes in the array are empty..
VB Code:
  1. Dim i As Long
  2.    For i = 0 To 10
  3.      If text1(i).text="" Then
  4.         MsgBox text1(i) & (i) & " is empty"
  5.      End If
  6. Next
does this work ?