J
JustMe
I'm stumped.
I have a piece of code that iterates through a string looking for
substrings, which I then concatenate together using code like this:
newString = newString & oldString.substring(y,1)
This all works fine, however in the end, if I view the value of
newString in my 'command window' in visual studio, I show a value like
this:
"My Value
There is no ending quotation mark.
What the heck am I missing?
If I enter the following in the command window:
newString = newString
the value will then be as expected: "My Value"
However if I put that same piece of code in my aplication, the
resulting value still ends up with no closign quote.
Does anyone have any suggestions?
-Terry
I have a piece of code that iterates through a string looking for
substrings, which I then concatenate together using code like this:
newString = newString & oldString.substring(y,1)
This all works fine, however in the end, if I view the value of
newString in my 'command window' in visual studio, I show a value like
this:
"My Value
There is no ending quotation mark.
What the heck am I missing?
If I enter the following in the command window:
newString = newString
the value will then be as expected: "My Value"
However if I put that same piece of code in my aplication, the
resulting value still ends up with no closign quote.
Does anyone have any suggestions?
-Terry