first, replace the commas in the field with a different character (such as ~)
yourstring = Replace(yourstring, ",", "~")
then when you read it replace the ~ with commas:
yourstring = Replace(yourstring, "~", ",")
Eddy Dumire
eddy.dumire@knowledgecg.com