避免打开超链接单元格的按钮出现警告和错误
我将以下代码分配给 Excel 工作表中的按钮。
Sub Hyperlink()
Worksheets("Sheet Name").Cells(ActiveCell.Row, 3).Hyperlinks(1).Follow
End Sub
单击该按钮时,Excel 将打开活动行的附加文件。只要活动行中有超链接并且用户在弹出警告窗口时单击“确定”,这种方法就可以正常工作。
如果可能,我怎样才能:
- 避免打开超链接文件的警告?
- 避免、禁用或自定义以下错误消息。
- 空行或没有超链接文件。
- (运行时错误“9”:下标超出范围。)
- 当存在超链接文件时单击“取消”。
- (运行时错误“-24147467260 (80004004)”:无法通过超链接到达目的地。)
- 空行或没有超链接文件。
谢谢。
我还在此处找到了禁用超链接警告的方法。
虽然,我不想为工作簿的每个用户执行此操作......
I have the following code assigned to a button in an excel worksheet.
Sub Hyperlink()
Worksheets("Sheet Name").Cells(ActiveCell.Row, 3).Hyperlinks(1).Follow
End Sub
When the button is clicked, excel will open the active row's attached file. This works fine as long as there is a hyperlink in the active row and the user clicks OK when the warning window pops up.
If possible, How can I:
- Avoid the warning to open the hyperlinked file?
- Avoid, disable, or customize the following error messages.
- Empty row or no hyperlinked file.
- (Run-time error '9': Subscript out of range.)
- Clicking cancel when there is a hyperlinked file.
- (Run-time error '-24147467260 (80004004)': The hyperlink cannot be followed to the destination.)
- Empty row or no hyperlinked file.
Here are screenshots of the pop-up messages.
Thank You.
I also found a way to disable hyperlink warnings here.
Although, I do not want to do this for every user of the workbook...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Display.Alerts=False 不起作用,否则任何坏人都可以关闭警告。这可能对你部分有用。
Display.Alerts=False will not work, otherwise any bad guy could turn off warnings. This might work for you partially.