DBLookupComboBox 和内容刷新

发布于 2024-10-10 08:16:09 字数 240 浏览 7 评论 0原文

我有 Delphi 7,我使用 NexusDB 作为数据库。

我有一个主窗体,其中有一个 DBLookupComboBox 来列出表的内容。

如果我按表单上的按钮将新项目添加到列表中(这将打开第二个对话框),然后返回主表单我希望新添加的项目立即显示

我似乎无法让它发挥作用。

我尝试刷新 ListSource 对象下的 DataSet。

有人有什么想法吗?

谢谢, 大卫

I have Delphi 7 and I'm using NexusDB for the database.

I have a main form where I have a DBLookupComboBox to list the contents of a Table.

If I press a button I have on the form to add a new item to the list (which opens a 2nd dialog box) and then come back to the main form I want the newly added item to show up immediately

I can't seem to get that to work.

I've tried refreshing the DataSet under the ListSource object.

Anyone have any ideas?

Thanks,
David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

顾冷 2024-10-17 08:16:09
DBLookupComboBox1.ListSource.DataSet.Close;
DBLookupComboBox1.ListSource.DataSet.Open;
DBLookupComboBox1.ListSource.DataSet.Close;
DBLookupComboBox1.ListSource.DataSet.Open;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文