在我的Workbook_Open
事件中,我激活了一个特定的工作表,以确保用户始终打开它。当这部分代码试图运行时,一个用户弹出一条错误消息:
Run-Time Error '52121': Object Defined or Application Defined error
我知道问题不在EventsEnabled
,因为我试过了。如果我有一个猜测,我会怀疑他缺少某种参考,或者软件已损坏,但我甚至不知道从哪里开始弄清楚这些问题。
我的代码:
Private Sub Workbook_Open()
Application.EnableEvents = True 'this was added after I noticed his error
Sheets("Control Panel").Activate 'it errors on this line
End Sub
同样,这个问题只发生在一台机器上。