multiple lines per row in combobox

  • Thread starter Thread starter DrB
  • Start date Start date
D

DrB

Has anyone found a kluge to allow multiple text lines in
one row of a combobox or listbox control? Any version
Access.
 
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"
 
Back
Top