multiple lines per row in combobox

D

DrB

Has anyone found a kluge to allow multiple text lines in
one row of a combobox or listbox control? Any version
Access.
 
D

DrB

actually found the solution; create the RowSource in code.
Use something like

Me!Combobox0.RowSource = "First Item first row" & chr(13)
& chr(10) & Chr(8) & "First Item second row " & ";"
& "Second Item first row" & chr(13) & chr(10)& chr(8)
& "Second Item second row"
 
Top