MS Access = 引用子窗体内的控件

发布于 2024-10-01 00:51:16 字数 513 浏览 12 评论 0原文

所以我有一个表单,其中有一个子表单控件,用作我的主表单的导航方案。在子窗体中,有一个子窗体2,它实际上包含用于数据输入的控件。

因此,主窗体几乎就像 sub1 结构中的 sub2 周围的设计外壳。因此,在 subform1 中,有 10 个可单击按钮,可在 subform2 窗口中打开 10 个不同的表单。 subform2 包含控件.....所以这是我的问题/问题:

因此,如果我在 subform2 上有一个单击事件,我试图在 subform1 子控件中打开下一个表单(subform2 表单),该控件位于主窗体,处理这个问题的 vb 语法是什么?

我不确定我问的是否正确。

我尝试过:

Forms!SubForm1.MyChild.sourceobject = "NextSubForm2"

但这仅在主窗体未打开的情况下才有效......就像我只打开了 SubForm1 一样。

另一件事是,这是 SubForm2 表单背后的代码(2 是表单内子内的子)。

So I have a form, with a subform control that acts as a navigation scheme for my Main Form. Within the sub form, there is a sub form2 that actually contains the controls for data entry.

So the Main Form is almost just like a design shell around the sub2 within sub1 structure. So in subform1 there is 10 clickable buttons that open 10 different forms in the subform2 window. The subform2 contains the controls.....so here is my issue/question:

So if I have a click event on the subform2 where i am trying to open the next form (subform2 form) within the subform1 child control, which is within the Main Form, what is the vb syntax for handling this?

I am not sure if i am asking this correctly.

I tried:

Forms!SubForm1.MyChild.sourceobject = "NextSubForm2"

but this only works if the Main Form is not open....like if I only had the SubForm1 open.

One more thing, this is code behind the form of the SubForm2 (2 being the sub within the sub within the form).

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

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

发布评论

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

评论(1

╭ゆ眷念 2024-10-08 00:51:16

从子表单的角度来看,主要表单是:

Me.Parent

您可以在此基础上构建:

Me.Parent.Subform1ControlName.Form.AControl

另请参阅:http ://www.mvps.org/access/forms/frm0031.htm

所以:

Me.Parent.Subform1ControlName.SourceObject = "SomeForm"

The main form from a subform's point of view is:

Me.Parent

You can build on this:

Me.Parent.Subform1ControlName.Form.AControl

See also: http://www.mvps.org/access/forms/frm0031.htm

So:

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