J
JimmyX
If I try to add a string to a string variable and display it in a listbox,
the string does not display
Strng="abc"
listbox1.items.add(Strng+"xyz")
The resulting display is abc
But if I do it the other way around:
Strng="abc"
listbox1.items.add("xyz"+Strng)
It displays correctly
The resulting display is xyzabc
Why does this happen???????
the string does not display
Strng="abc"
listbox1.items.add(Strng+"xyz")
The resulting display is abc
But if I do it the other way around:
Strng="abc"
listbox1.items.add("xyz"+Strng)
It displays correctly
The resulting display is xyzabc
Why does this happen???????