An example code of a system-modal message box is:
Sub MsgBoxSystemModal() MsgBox "You absolutely must read this", _ vbOKOnly Or vbSystemModal, "Always on Top" End Sub

Explanation:
The OK button and the vbSystemModal property are combined using the Or operator. This makes the dialog box stay always on top, even if the user switches to another application.