Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
Change the following line
to
Otherwise, BlockID is simply seen as part of the overall string rather than being a variable that you are concatenating into the string.
ValuesArray[0] = 'WPFObject("TextBlock", BlockID, 1)';to
ValuesArray[0] = 'WPFObject("TextBlock",' + BlockID + ', 1)';Otherwise, BlockID is simply seen as part of the overall string rather than being a variable that you are concatenating into the string.