Can I have a With in a With?
I have two objects that are indexed. One is a UC and the other is a UDT
Instead of this....
...can I have this
I have two objects that are indexed. One is a UC and the other is a UDT
Instead of this....
Code:
UC(index).Text = UDT(index).uText
UC(index).Value = UDT(index).uValue
UC(index).Image = UDT(index).uImage
etc
Code:
With UC(index)
With UDT(index)
.Text = .uText
.Value = .uValue
.Image = .uImage
'
etc
'
End With
End With