In Excel I'm having issues hiding a Userform named "mission". My desire is to show it, delay 2 seconds or so, then get rid of it. I've tried this
Sub Picture182_Click()
mission.Show
Application.Wait Now + TimeValue("0:00:02")
Application.ScreenUpdating = True
mission.Hide
DoEvents
End Sub
The Userform shows up, but won't go away. hmmmm..