Hi...
I have code like this :
Dim node = "n3"
Dim x1 = "tree_category.Nodes("""
Dim x2 = """).Nodes("""
Dim x3 = """).Nodes.Add(""" & node & """)"
Dim x4 = x1 & "n1" & x2 & "n2" & x3
so x4 is : "tree_category.Nodes("n1").Nodes("n2").Nodes.Add("n3")"
how can i covert this string to code to create the node?
I have code like this :
Dim node = "n3"
Dim x1 = "tree_category.Nodes("""
Dim x2 = """).Nodes("""
Dim x3 = """).Nodes.Add(""" & node & """)"
Dim x4 = x1 & "n1" & x2 & "n2" & x3
so x4 is : "tree_category.Nodes("n1").Nodes("n2").Nodes.Add("n3")"
how can i covert this string to code to create the node?