Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个返回 Null 的子表单引用,其中文本框有一个值。我正在使用的代码是:
End Date: [Forms]![ReportCentre]![NavigationSubform].[Form]![txtEndDate]
这是一个选项卡式控件,但我找不到类似问题中提到的 .Pages 属性。
被引用的子表单是[LODForm],选项卡控件(页面区域)是[NavigationSubform]
为什么这会返回 Null?
子窗体属于窗体,而不是选项卡控件。选项卡控件仅隐藏/显示其他控件。您将引用子窗体控件,而不是子窗体。因此:
End Date: [Forms]![ReportCentre]![NameOfYourSubformControl].[Form]![txtEndDate]
插入的子窗体控件名称: