I have a strange problem, when I try to join two strings, one declared as a string()
dim string1 as string()
the string contains some data in both str(0) and str(1)
but when I try to add that with a regular string: "some text" like this:
dim string1 as string()
dim string2 as string
string2 = string1(1) & " Some text"
let's say string1(1) = "here is"
Which should result in: string2 = "here is Some text"
BUT, all I get when the code execute is "here is
not even a finishing "...
So where does: some text"
go?
It's kind of crucial for my application to get the whole string since it provides needed data to continue! :S
happy for any thoughts and/or solutions :)