Have you ever wanted to try scripting in Notepad? Well, here's your chance to! I'll show you how to create a simple error message box, only with the use of Notepad. This works in Windows XP, Vista and 7. Here's the code you will need to put in -
X=MsgBox("Message Description",0+16,"Title")
Here's what the numbers mean -
Number before the + =
0 = Ok Button
1 = Ok/Cancel Button
2 = Abbort/Retry/Ignore button
3 = Yes/No/Cancel
4 = Yes/No
Here are what the numbers mean after the + =
16 - Crtitcal Icon
32 - Warning Icon
48 - Warning Message Icon
64 - Information Icon
To create multiple Message Boxes, just duplicate the line
ENJOY!