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.
我使用 MS Access 2007。我创建了简单的选择查询,后来我使用了隐藏属性。
我的问题是为什么我不能在具有隐藏属性的情况下将数据导出到 XML?
您可能必须在导出之前取消隐藏它,然后再次隐藏它:
QueryName = "NameOfYourQuery" SetHiddenAttribute acQuery, QueryName, False ' Run your export. SetHiddenAttribute acQuery, QueryName, True