P
Paulers
Hello,
I have an arraylist that looks like this: 1,4,6
I have buttons called button1, button4, button6.
I would like to change the text on the buttons that corispond to the
numbers in the array. Is there a dynamic way to do this? or do I have
to loop through the arraylist and use a switch to update them?
like is ther any way to do something like this
Dim button as String
For i = 0 To al.Count - 1
button = "button" & al.Item(i)
button.Text = "text changed"
Next
thanks!
I have an arraylist that looks like this: 1,4,6
I have buttons called button1, button4, button6.
I would like to change the text on the buttons that corispond to the
numbers in the array. Is there a dynamic way to do this? or do I have
to loop through the arraylist and use a switch to update them?
like is ther any way to do something like this
Dim button as String
For i = 0 To al.Count - 1
button = "button" & al.Item(i)
button.Text = "text changed"
Next
thanks!