I'm trying to display a comma (e.g. Spencer, Lori) in one column in an Access listbox via code. I've tried chr(44) and "","" etc. When I run my listbox.rowsource thru the debugger, it appears that my data will be displayed properly (I'm using ; as a delimiter), but Access seems to think that commas are also delimiters, and it throws "Lori" into the next column.
Here's an example of what I've been trying out.
Me.LstPosition.RowSource = as400.AuthRead!PRPOSN & ";" _
& sFirstHalf & "chr(44)" & sLastHalf & ";" & as400.PRSSN & ";"
Here's an example of what I've been trying out.
Me.LstPosition.RowSource = as400.AuthRead!PRPOSN & ";" _
& sFirstHalf & "chr(44)" & sLastHalf & ";" & as400.PRSSN & ";"