D DrB Jul 18, 2003 #1 Has anyone found a kluge to allow multiple text lines in one row of a combobox or listbox control? Any version Access.
Has anyone found a kluge to allow multiple text lines in one row of a combobox or listbox control? Any version Access.
D DrB Jul 19, 2003 #2 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"
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"