Access (的 AdditionalData 物件)
代表會和 ExportXML 方法所匯出的上一層資料表放在一起的資料表及查詢的集合。
註解
若要建立 AdditionalData 物件,請使用 CreateAdditionalData應用程式 物件方法。
若要將表格新增至現有的 AdditionalData 物件,使用 Add 方法。
範例
下列範例會將北風貿易範例資料庫中 [客戶] 資料表的內容,連同 [訂貨主檔] 和 [訂貨明細] 資料表的內容匯出至名為 Customer Orders.xml 的 XML 資料檔。
Sub ExportCustomerOrderData()
Dim objOrderInfo As AdditionalData
Set objOrderInfo = Application.CreateAdditionalData
' Add the Orders and Order Details tables to the data to be exported.
objOrderInfo.Add "Orders"
objOrderInfo.Add "Order Details"
' Export the contents of the Customers table. The Orders and Order
' Details tables will be included in the XML file.
Application.ExportXML ObjectType:=acExportTable, DataSource:="Customers", _
DataTarget:="Customer Orders.xml", _
AdditionalData:=objOrderInfo
End Sub
方法
屬性
請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。