Delphi中将值从子窗体传递到父窗体

发布于 2025-01-12 05:13:35 字数 136 浏览 1 评论 0原文

我有一个 Delphi 表单 A,它有一个调用另一个表单 B 的菜单。 表格 B 有一个过程,在经过一些计算后填充一对文本字段 在 Formshow 活动上。

我需要表格 A 中的计算字段值。正确的方法应该是什么。

谢谢, 沙泽布

I have one Delphi form A and it has menu which is calling another form B.
Form B has one procedure which is filling the couple of text fields after some calculation
on Formshow event.

I need that calculated field value in form A. What should be right approach for it.

Thanks,
Shazeb

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

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

发布评论

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

评论(1

风吹雨成花 2025-01-19 05:13:35

据我了解,“表单 A 调用表单 B”的意思是表单 A 调用 FormB.ShowModal。

您应该通过调用 FormB 中的新函数来替换该 ShowModal 调用。该函数将调用 ShowModal,然后返回计算字段。

As I understand what you mean by "form A calling form B" is that form A call FormB.ShowModal.

You should replace that ShowModal call by a call to a new function in FormB. That function will call ShowModal and then return the calculated field.

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