Here's a quick example of my problem.
Code:
(1) People's Lawyers
(2) Frank's Lawfirm
(3) Smith
Smith
Smith and Paul
(4) ABC Law
Here's how it should look
Code:
(1) People's Lawyers
(2) Frank's Lawfirm
(3) Smith, Smith, Smith and Paul
(4) ABC Law
The combobox is populated by code from a database, so it is set up as ValueList. What can I do to get around the issue of the listbox taking the comma and seperating the data? Heres my code for the AddItem routine.
vb Code:
  1. Function PopulateOrganization()
  2.     Dim db As Database
  3.     Dim rstORG As DAO.Recordset
  4.     Dim SQL
  5.     Dim i As Long
  6.    
  7.     Set db = CurrentDb()
  8.     SQL = "SELECT org_id, org_desc FROM ORGANIZATIONS ORDER BY org_desc ASC"
  9.    
  10.     Set rstORG = db.OpenRecordset(SQL)
  11.     rstORG.MoveFirst
  12.     rstORG.MoveNext
  13.    
  14.     i = 0
  15.     Do While i < cmbOrganization.ListCount
  16.         cmbOrganization.RemoveItem (i)
  17.     Loop
  18.     rstORG.MoveFirst
  19.     Do While Not rstORG.EOF
  20.         cmbOrganization.AddItem "(" & rstORG!org_id & ") " & (Trim(rstORG!org_desc))
  21.         rstORG.MoveNext
  22.     Loop
  23. End Function

Any ideas would be greatly appriciated! Thanks in advanced.

~Chris