Pulling my hair out on this one. I have a string value which has commas in it. It is an SQL statement. All I am trying to do is add the string to a single column listbox. When I do it it always parses my string at the first comma. I have searched all over the web, can't believe no one else has had this problem. My background is Excel VBA, never had this problem.

Example
strString = "Select dog,cat, and cow from tblAnimals"
lbTest.AddItem strString
The listbox result is the following
Select dog
I want the listbox to show entire string.
Select dog,cat, and cow from tblAnimals

Example
strString = "Select dog,cat, and cow from tblAnimals"
lbTest.AddItem strString
The listbox result is the following
Select dog
I want the listbox to show entire string.
Select dog,cat, and cow from tblAnimals