Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过单击命令按钮成功地设计了一个代码来计算回归分析。命令代码引用了导入到 VB 中的 excel 工作表。当用户在没有先将数据导入 VB 的情况下点击计算命令按钮时,我希望出现一条错误消息。我这样做是一个陷阱,但不起作用:
如果 EDOffice1.ActiveDocument 为空,则
MsgBox "没有选择文件"
万一
请帮忙。
尝试
If EDOffice1.Documents.Count = 0 Then MsgBox "No Files were selected" End If
还可以考虑禁用该按钮,直到导入数据。