更改后更新网格

发布于 2024-12-20 20:06:39 字数 253 浏览 3 评论 0原文

是的,这可能会非常简单。我有一个包含网格的表单,如果您选择其中一个记录并按“编辑”,您将进入另一个表单,您可以在其中编辑附加到该记录的数据 - 这一切都有效。

然而,保存后,它将写入数据库,但不会更新上述网格,直到我一起退出程序然后返回。

我想做的就是在退出其他表单时更新网格。

我尝试打开/关闭表组件,对查询和表调用“刷新”。我使用 BDE 连接到数据库并在 Rad Studio XE2 中编写此内容。

任何帮助将不胜感激。

Right, this is probably going to be pretty simple. I have a form that contains a grid, if you select one of the records and press 'Edit' you get taken to another form where you can edit the data attached to that record - this all works.

However upon saving it will write it to the database but will not update the aforementioned grid until I come out of my program all together and then go back in.

All I want to do is get the grid to update when exiting the other form.

I have tried opening/closing the table components, calling the 'refresh' against the query and the table. I am connecting to the database using BDE and writing this in Rad Studio XE2.

Any help would be appreciated.

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

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

发布评论

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

评论(1

树深时见影 2024-12-27 20:06:39

希望这能解决您的

Table1.Active := False;  
Table1.Active := True;

TTable 和

TQuery1.Active := False;
TQuery1.active := True;

TQuery问题

Hope this solves your problem

Table1.Active := False;  
Table1.Active := True;

for a TTable and

TQuery1.Active := False;
TQuery1.active := True;

for a TQuery

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文