Jessie
Jessie

Reputation: 416

vbs Msgbox parameter 262144

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

Answers (1)

Hackoo
Hackoo

Reputation: 18857

When you are in doubt see the documentation here for MsgBox

Upvotes: 0

Related Questions