How to do this in VBA?
In table Features
I have column Colors
. Single field there has the following data: black; blue; yellow
- delimited with ;
On Access
form I want to populate a listbox (lstColors
) with data from that single field so that I get the list with:
black
blue
yellow
Any help appreciated!
答案 0 :(得分:0)
将列表框的 RowSourceType 设置为: ValueList
将 RowSource 设置为字段 Colors 中的值,这是一个值列表。