如何在后台关闭销售报价详细信息表单?

发布于 2024-12-11 07:06:13 字数 89 浏览 1 评论 0 原文

我创建了某种表单,其中将一些项目发送到销售订单详细信息表单中的销售行。我现在需要的是一些逻辑来检查销售报价详细信息表单是否在后台打开然后将其关闭。任何人都可以帮忙。

I have created some form in which it sended a few items to the sales lines in sales order detail form. What I need now is some logic to check if salesquotation detail form is open in the background then close it. Can anyone help.

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

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

发布评论

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

评论(1

婴鹅 2024-12-18 07:06:13

通过代码关闭表单不是最佳实践,用户应该拥有控制权。

但如果您坚持:

void close()
{
    if (formRun && !formRun.closed())
        formRun.close();
    super();
}

这会在关闭当前表单时关闭子表单(如果尚未关闭)。

当然,这需要您通过代码打开子表单,如下所述此处

It is not best practice to close forms by code, the user should be in control.

But if you insist:

void close()
{
    if (formRun && !formRun.closed())
        formRun.close();
    super();
}

This closes a child form (if not already closed) when closing the current form.

Of course this requires you to open the child form by code as explained here.

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