DBLookupComboBox - 如何清除所选项目?

发布于 2024-12-24 17:57:23 字数 202 浏览 1 评论 0原文

我试图实现的就像在普通 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

草莓味的萝莉 2024-12-31 17:57:23

两种方式:

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)

生活了然无味 2024-12-31 17:57:23

您可以使用

DBLookupComboBox.KeyValue := -1;

You can use

DBLookupComboBox.KeyValue := -1;
神经大条 2024-12-31 17:57:23

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.

留蓝 2024-12-31 17:57:23

如果您第一次在属性中设置 dblokupcombobox KeyField 为 'city' //示例,

如果您想清除所选项目,您可以使用此

procedure TFtreset.BitBtn6Click(Sender: TObject);
begin
  dblookupcombobox2.KeyValue:='city';
end;

if first time you set dblokupcombobox KeyField in property is 'city' //example

if you want to clear selected item you can use this

procedure TFtreset.BitBtn6Click(Sender: TObject);
begin
  dblookupcombobox2.KeyValue:='city';
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文