繁体   English   中英

如何在表单上显示 MS Access 表附件或存储在 SharePoint 位置的图像?

[英]How do I display an MS Access Table Attachment or an image stored in a SharePoint location on a form?

我正在为一个使用 Microsoft Access for Office 365 的工作项目制作一个小游戏。我有一个表格,其中包含所有答案和作为附件存储的相关图片。 用户将通过 SQL 查询滚动通过记录源提供的记录。

我想在用户导航时显示与每条记录相关的图像。

我更愿意将图像存储在其他地方,但并非所有预期用户都可以访问公共网络文件夹。 我确实可以访问常见的 SharePoint 位置,我可以在其中将结果上传到链接的 SharePoint 列表中,但是当我尝试从 SharePoint 位置插入图像时,MS Access 不允许“网址”。

在测试中,我使用 VBA 通过子窗体上的图片属性将图像(托管在网络文件夹上)显示为背景,但由于并非所有用户都可以访问公共网络文件夹,因此我无法执行此操作在生产中。 (创建后发现没有通用文件夹。)

如何在附件中显示该图片?

或者

如何使用 SharePoint 托管图像?

使用“开箱即用”的 MS Access 是否可以实现这些功能?

编辑:使用 .accdr 格式防止用户查看表格中的答案

由于您将拥有图片的 URL,您可以使用我的奇特函数UrlContent

' Download (picture) file from a URL of a hyperlink field to a
' (temporary) folder, and return the full path to the downloaded file.
'
' This can be used as the control source for a bound picture control.
' If no Folder is specified, the user's IE cache folder is used.
'
' Typical usage in the RecordSource for a form or report where Id is
' the unique ID and Url is the hyperlink field holding the URL to
' the picture file to be displayed:
'
'   - to a cached file where parameter Id is not used:
'
'   Select *, UrlContent(0, [Url]) As Path From SomeTable;
'
'   - or, where Id is used to create the local file name:
'
'   Select *, UrlContent([Id], [Url], "d:\somefolder") As Path From SomeTable;
'
' Then, set ControlSource of the bound picture control to: Path
'
' 2017-05-28. Gustav Brock, Cactus Data ApS, CPH.
'
Public Function UrlContent( _
    ByVal Id As Long, _
    ByVal Url As String, _
    Optional ByVal Folder As String) _
    As Variant

    Const NoError   As Long = 0
    Const Dot       As String = "."
    Const BackSlash As String = "\"
    
    Dim Address     As String
    Dim Ext         As String
    Dim Path        As String
    Dim Result      As String
    
    ' Strip leading and trailing octothorpes from URL string.
    Address = HyperlinkPart(Url, acAddress)
    ' If Address is a zero-length string, Url was not wrapped in octothorpes.
    If Address = "" Then
        ' Use Url as is.
        Address = Url
    End If
    
    If Folder = "" Then
        ' Import to IE cache.
        Result = DownloadCacheFile(Address)
    Else
        If Right(Folder, 1) <> BackSlash Then
            ' Append a backslash.
            Folder = Folder & BackSlash
        End If
    
        ' Retrieve extension of file name.
        Ext = StrReverse(Split(StrReverse(Address), Dot)(0))
        ' Build full path for downloaded file.
        Path = Folder & CStr(Id) & Dot & Ext
        
        If DownloadFile(Address, Path) = NoError Then
            Result = Path
        End If
    End If
    
    UrlContent = Result
    
End Function

可以在我的项目VBA.PictureUrl 中找到完整的代码、文档和演示。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM