【发布时间】:2015-04-26 16:09:39
【问题描述】:
是否可以向消息框添加超链接?我正在尝试做这样的事情:
MsgBox "Sorry, but you have an out-of-date database version. Please redownload via the batch file to ensure that you have the latest version. Contact the administrator of this database or your manager if you need help." & vbCr _
& vbCr _
& "Your current database version is " & CurrentVer & " which may be out of date. The current database version prescribed on the network share is " & FileVer & ". They must match in order for you to proceed." & vbCr _
& vbCr _
& "For CSC self-help instructions on how to reload the most current version of the PRF Intake Tool to your computer, please click the link below to be directed to CSC Online instructions." & vbCr _
& vbCr _
& "http://www.OurSite.com/online/Solutions/Search_Results.asp?opsystem=7&keywords=PRF+Intake+Tool&Category=", , "There is a problem..."
问题是,超链接不可点击。我想这样做,以便用户只需单击链接并自动开始下载。
我在 Win7 环境中使用 Access 2010。
【问题讨论】:
-
否,但您可以询问用户是否要打开链接,然后将 IE 导航到该位置。
-
或为消息框构建一个自定义表单,然后您可以添加超链接
标签: vba ms-access hyperlink ms-access-2010 messagebox