將此測試過程與其他帖子一起放在Outlook 2013模塊中,應顯示一個彈出框,然後在3秒後自動關閉。問題是它永遠不會關閉。InfoBox.Popup拒絕在計時器到期時關閉
Sub MessageBoxTimer()
Dim AckTime As Integer, InfoBox As Object
Set InfoBox = CreateObject("WScript.Shell")
AckTime = 3
Select Case InfoBox.Popup("Click OK (this window closes automatically after 3 seconds).", _
AckTime, "This is your Message Box", 0)
Case 1, -1
Exit Sub
End Select
End Sub
看起來問題根本與Outlook沒有關係。 –
請您詳細說明一下嗎? –
我認爲這是所有Office應用程序的常見問題,而不僅僅是Outlook。至少我沒有看到任何涉及Outlook的對象。 –