如何使用vba在ms-access中列出列表框中的第一个条目?
答案 0 :(得分:9)
是否在简单的列表框中选择了项目(即,不是多选)?如果是这样的话:
MsgBox Me.ListBox
它是多选列表框中的选定项吗?如果是的话:
MsgBox Me.ListBox .Column(0, Me.List0.ItemsSelected(0))
如果你只是想要第一个项目是否被选中:
MsgBox Me.List0.Column(0, 0)
或者
MsgBox Me.List0.ItemData(0)
答案 1 :(得分:1)
使用MS Access 2007 你可以尝试
MsgBox YourListBox.ItemData(0)