在 Access VBA 中获取 Combobox.Value
我有这样的代码:
If Me.Combobox.Value = "My Text" Then
因为我想测试“我的文本”是否是唯一选择的值,但是,条件被跳过。
我也尝试过
Me.Combobox.Column(1)
,
Me.Combobox.Text
我相信有一些我只是忽略的简单解决方案。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我重新测试可能性时,
Me.Combobox.Column(1)
决定工作。Me.Combobox.Column(1)
decided to work as I retested the possibilities.