Let's say I have 10 labels named "label0", "label1" and so on... and a list with 10 strings "listNames(10) As String" and I want programmatically send the 10 strings that are in the list at every label depending on their name...
is it possible to shorten the code doing something like this?:
For i = 0 To 9
label(i).text = listNames(i)
Next
Thansk for any help
Massy
is it possible to shorten the code doing something like this?:
For i = 0 To 9
label(i).text = listNames(i)
Next
Thansk for any help
Massy