Getting Combobox.Value in Access VBA

青春壹個敷衍的年華 提交于 2019-12-12 10:34:07

问题


I have this code:

If Me.Combobox.Value = "My Text" Then

As I want to test if "My Text" is the only value selected, however, the conditional is skipped.

I have also tried

Me.Combobox.Column(1)

and

Me.Combobox.Text

I believe there is some simple solution that I'm just overlooking.


回答1:


Me.Combobox.Column(1) decided to work as I retested the possibilities.



来源:https://stackoverflow.com/questions/7680171/getting-combobox-value-in-access-vba

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!