I am trying to populate a 3 column list box from code. It works fine except when a string contains an ampersand or a comma (and possibly other characters that I haven't tried). When one of those characters is in the text column, that character and everything following it are placed in the first column in error.
Example:
3;4;This text
The above works fine.
5;13;This text & that text
This produces one row with the following:
Row 1 Column 1 = 5
Row 1 Column 2 = 13
Row 1 Column 3 = This text
Row 2 Column 1 = & that text
Is there any way to produce the correct results, that is
Row 1 Column 3 = This text & that text
Thanks.
Example:
3;4;This text
The above works fine.
5;13;This text & that text
This produces one row with the following:
Row 1 Column 1 = 5
Row 1 Column 2 = 13
Row 1 Column 3 = This text
Row 2 Column 1 = & that text
Is there any way to produce the correct results, that is
Row 1 Column 3 = This text & that text
Thanks.