Reputation: 416
In the following example a message box will pop up with an icon to the left. and keep it on top of other windows.
msgbox("Text",vbSystemModal,"Title")
However the following will remove the icon and still keep it on top of the other windows like vbSystemModal.
msgbox("Text",262144,"Title")
Why is this? I can't find any documentation on this number or if it even has a name to it. Can anyone explain what exactly this number is doing?
Upvotes: 3
Views: 363