J
Joseph
I am rewriting a VB6 program from scratch. In vb6 I had an index
commandbtton and was able to do use a for loop to make changes to the
entire group of button. For example the following code worked out ok
Dim i As Integer
For i = 0 To cmdButtn.Count - 1
With cmdButtn(i)
.ToolTipText = .Caption
End With
Next i
As per every other programmer I am trying not to use the upgrade
wizard. Is there an easy way to translate this in vb.net
commandbtton and was able to do use a for loop to make changes to the
entire group of button. For example the following code worked out ok
Dim i As Integer
For i = 0 To cmdButtn.Count - 1
With cmdButtn(i)
.ToolTipText = .Caption
End With
Next i
As per every other programmer I am trying not to use the upgrade
wizard. Is there an easy way to translate this in vb.net