3

I want to create a VBS script that has a message box with multiple numerical attributes,
for example having a message box with the 16 icon as well as the 2 value (Abort,Retry,Ignore)
In other words, I would want to combine the following two scripts into one.

    lol=msgbox("Body message",16,"Title")

with

    lol=msgbox("Body message",2,"Title")


How do I get to combine these two attributes?

Roke
  • 300
  • 1
  • 6
  • 27

1 Answers1

1

You just add the numbers together:

lol=msgbox("Body message",18,"Title")
Tony Hinkle
  • 4,706
  • 7
  • 23
  • 35