Hi I have message boxes which are for information but if no one is looking then I want my program to continue on. This code does that and shows a box with an 'OK' button. Now if someone is looking then I want to recognise a press of the button. I have tried various things like vbOK, vbOnly but no joy - so what's the magic line please?

'shows countdown
For counT = 5 To 1 Step -1
    message.popUp "This message will show for " & counT & " seconds", 1, "Quick Message " & counT
Next
TKIA