please tell me a simple program for making a pop message box in notepad
Answers
Answered by
1
n the part where it says "box text", type the text you want on the window (with quotation marks). On the "box title", type the title of the message box the same way you typed the text. On "buttons" type a number (without quotation marks):
0: Normal message box
1: OK and Cancel
2: Abort, Retry, Ignore
3: Yes, No, Cancel
4: Yes and No
5: Retry and Cancel
16: Critical message icon
32: Warning query icon
48: Warning message icon
64: Information message icon
4096: Always stay on top of the desktop
0: Normal message box
1: OK and Cancel
2: Abort, Retry, Ignore
3: Yes, No, Cancel
4: Yes and No
5: Retry and Cancel
16: Critical message icon
32: Warning query icon
48: Warning message icon
64: Information message icon
4096: Always stay on top of the desktop
Answered by
1
go to notepad
x=msgbox("This program can't run" , 0+16 , "Warning")
copy above code in notepad and save it as anyting.bat
You can change the message also .....
x=msgbox("This program can't run" , 0+16 , "Warning")
copy above code in notepad and save it as anyting.bat
You can change the message also .....
Similar questions