
12-28-2002, 02:41 AM
|
|
Promising Talent
Retired Moderator * Guru *
|
|
Join Date: May 2002
Location: Brussels
Posts: 3,601
|
|
The array usually starts at 0, not 1. Then it should work.
You can also do this, which will also work if an index is missing.
Code:
Dim lbl As Label
For Each lbl In Label1
MsgBox lbl.Caption
Next
|
|