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.
我敢肯定我以前遇到过这种情况,不记得我是否找到了解决方法。我需要在 DataSheet 模式下打开一个模态过滤表单。我已将默认且仅允许的模式设置为 DataSheet,但是当我
DoCmd.OpenForm "frmOptyFeedbackExport", acNormal, , , acFormReadOnly, acDialog
它以单一形式出现,有人知道为什么以及如何强制它作为数据表打开吗?
你不想要 acNormal:
DoCmd.OpenForm "frmOptyFeedbackExport",acFormDS, , , acFormReadOnly, acDialog
我会非常小心模态形式。