Here's code to quickly check your query"
-----------------------
Dim X As Integer
For X = 1 To 5
MsgBox "Some message", vbInformation
Next
-----------------------
You will see that only one messagebox appears until pressed. This wil happen 5 times.
So the answer is :It is not so much the vbInformation property that means anything, but rather the fact the the msgbox function uses a modal form which will halt execution until it is acknowledged.
Graham