DBLookupComboBox - 如何清除所选项目?
我试图实现的就像在普通 ComboBox 中一样将 ItemIndex 设置为 -1,以便清除所选项目。
DBLookupComboBox 没有 ItemIndex,并且 Text 属性是只读的。那么如何清除选中的项目呢?请帮忙。非常感谢。
PS:关闭并重新打开 DBLookupComboBox->ListSource DataSet 没有帮助。
What I tried to achieve is like setting ItemIndex to -1 as like in normal ComboBox, so that the selected item will be cleared.
There is no ItemIndex for DBLookupComboBox, and the Text property is read only. So how do I clear the selected item? Please help. Many thanks in advance.
PS: Closing and reopening the DBLookupComboBox->ListSource DataSet does not help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
两种方式:
1)运行时:DbLookupComboBox.KeyValue := null;
2) 在设计时:将 DbLookupComboBox.NullValueKey 属性设置为 DEL (或您想要在运行时用于清空值的任何键)
Two ways:
1) at runtime: DbLookupComboBox.KeyValue := null;
2) at design-time: set the DbLookupComboBox.NullValueKey property to DEL (or whatever key you want to use to null the value during runtime)
您可以使用
You can use
DBLookupComboBox 表示数据库字段的值。因此,您必须通过代码清除/更改字段的值来清除/更改 DBLookupComboBox 的值。
DBLookupComboBox represents the value of a field of a database. So you have to clear/change the value of the field to clear/change the value of the DBLookupComboBox by code.
如果您第一次在属性中设置 dblokupcombobox KeyField 为 'city' //示例,
如果您想清除所选项目,您可以使用此
if first time you set dblokupcombobox KeyField in property is 'city' //example
if you want to clear selected item you can use this