I wouldn't use a
Listbox, I'd use a
Combobox instead:
- Create a Query for the RowSource.
- In the Query create a Calculated Field.
- In the Combobox include Fields, if any, you need to utilize and include your Calculated Field.
- Adjust the Column Widths so that only the Calculated Field displays.
The
Calculated Field would look something like this:
DisplayColumn:Field1 & " " & Field2 & " " & Field3
Alternatively you could
- Superimpose a Listbox over a series of Textboxes that display the various Columns.
- When the Listbox is Null, make it Visible and Textboxes Invisible
- When not Null, make it Invisible and Textboxes Visible.
- Use the OnDoubleClick event of one or all of the Textboxes to go back to the Listbox being Visible and the Textboxes Invisible.
Personally, I'd go with the first example.
Linq
;0)>