How to make a message box using notepad



Follow the steps below:
1) Open notepad
2)Write the following code
        X MsgBox ("TYPE YOUR MESSAGE HERE",x+y,"TOPIC")
3)Remeber "x" inside the brackets stands for option buttons and you have to replace it with either 0 or 1 or 2 or 3 or 4 or 5
Here 0 = ok button
          1= ok/cancel button
          2= Abort/retry/cancel button
          3= Yes/no/cancel button
          4= Yes/no button
          5= Retry/cancel button

And "y" stands for the icon of the message and you have to replace it with either 16 or 32 or 48 or 62
           16= Critical icon
           32= Help icon
           42= Warning icon
           62= Information icon

4)You can make make as many of these message box inside one notepad file
5)Save the file with a ".vbs" extension eg:message.vbs


Comments