
EVAL function in VB.NET - where is it?
could you please tell me how do I evaluate strings in VB.Net
i want to cancatenate string with variable and execute it
something like:
if i want to take the value of strVar5
i = 5
strVar1 = Eval("strVar" & i)
You should be able to use the CallByName function for this:
http://www.dotnet247.com/247reference/msgs/18/90485.aspx
Microsoft MVP (Visual Basic)