ojconcentrate
New member
- Joined
- Mar 25, 2008
- Messages
- 2
- Programming Experience
- Beginner
I'm developing in .Net 3.5 and was wondering if there is an equivalent of the eval() javascript function in vb.net
I have several labels names label1 to label100 1 to 100 and need to change them.
using java i would use something like:
is this possible?
I have several labels names label1 to label100 1 to 100 and need to change them.
using java i would use something like:
VB.NET:
dim a as byte
for a = 1 to 100
eval(("label" & a).text = "Blahblah)
next
is this possible?
Last edited: