The following example checks to see whether Microsoft Office Web components are downloaded when a saved data access page ("Inventory") is displayed and sets the download flag accordingly.
Set objAppWebOptions = DataAccessPages("Inventory").WebOptions
With objAppWebOptions
If .DownloadComponents = True Then
strCompDownload = "Loaded"
Else
strCompDownload = "Not Loaded"
End If
End With