fowler1979
New member
- Joined
- May 16, 2012
- Messages
- 3
- Programming Experience
- 3-5
Hello everybody.
I couldn't quite found anything related to a thing that could be simple:
I have 12 labels and I need to assign them the same tooltip message. I am trying this:
The labels start lbl1, lbl2, lbl3, lbl4, etc...
I have other labels, so I do not want to use the
....
It's this possible?
Thank you
I couldn't quite found anything related to a thing that could be simple:
I have 12 labels and I need to assign them the same tooltip message. I am trying this:
The labels start lbl1, lbl2, lbl3, lbl4, etc...
VB.NET:
for z=1 to 12
tolDicas.SetToolTip(lbl+z, cntMsgLnk)
next
I have other labels, so I do not want to use the
VB.NET:
[B]for each control in me.controls[/B]
It's this possible?
Thank you