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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top