The example demonstrates a message box displaying the information icon.
Sub MsgBoxInformation() MsgBox "This is an information message", vbInformation, "Info" End Sub

Explanation:
An icon (in this case, the letter “i” for “Information”) can be displayed on its own. In this scenario, a simple message box with only the OK button is shown.