execute string

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

in vbscript there was a command called "execute" which would process a
dynamic string
vb.net dropped that feature ...

does anybody have a solution for how to execute a string in vb.net through
perhaps an assembly or ???

--------example code-------------
for i = 0 to 2
dim vString as string = "Dim submenu" & Cstr(i) & " As New
skmMenu.MenuItem(" & tab.TabName & ", """")"
EXECUTE (vString)
next
 
Back
Top