3

I want provide symbol of Information in vbscript.

Here is my code:

Set objShell = CreateObject( "WScript.Shell" )
lol=msgbox ("Update successful",10,"Information")

I want to provide Information(Exclaim) symbol before the message "Update successful". enter image description here

Can anybody please suggest me how to provide it?

Nanji Mange
  • 2,155
  • 4
  • 29
  • 63
  • 1
    Add 64 (information icon) to the buttons parameter. From Help at https://www.microsoft.com/en-au/download/details.aspx?id=2764 –  Apr 16 '16 at 09:08
  • PS `10` is undefined. –  Apr 16 '16 at 11:26

1 Answers1

1

Use vbInformation like that :

lol=msgbox ("Update successful",vbInformation,"Information")

For more information about MsgBox Constants

Hackoo
  • 18,337
  • 3
  • 40
  • 70