:
How about using a calculated column?
For example if you want to display Emp#, last name, first name and dept, the
row source for the list box would have 5 columns: ID (PK),EmpNum,L_Name,
F_Name, DeptAbbrev.
Add a calculated (6th) column to the rowsource of :
AllInfo:EmpNum & "/" & L_Name & ", " & F_Name & "/" & DeptAbbrev
Set the Column widths for the first 5 columns to 0" (zero) and the width for
the 6th to maybe 3" - whatever it takes to see the full line.
Make the listbox control wide enought to see the info..
Don't forget to set the Number of Columns to 6 on the Properties/ Format tab.
HTH