string variables

  1. B

    Out of Memory in String variable

    I'm looping through an xml node list and concatenating a string variable with the following: for x=0 to nl.count-1 temp$=temp$ & nl(x).attributes("text1").value Next x I then use the temp$ variable to fill a rich text box: rtf.text=temp$ I know this isn't a smart way to do things, and an...
Back
Top