【发布时间】:2018-06-20 19:52:40
【问题描述】:
使用 MS Access VBA,以下代码适用于我:
Reports.PARENT_REPORT_NAME.CHILD_REPORT_NAME.Report.Label1.Caption = "Yes"
但事实并非如此:
With Reports(PARENT_REPORT_NAME)
.CHILD_REPORT_NAME.Report.Label1.Caption = "Yes"
请问有人对我有什么见解吗?
【问题讨论】:
标签: vba ms-access with-statement subreports