Steps On Windows Fake Error Message Create
I want to create a Windows fake error message for my application development work. I want to know how to do that. Guys please someone help me with this.
I want to create a Windows fake error message for my application development work. I want to know how to do that. Guys please someone help me with this.
To create a game error message-
If you want to prank someone or a co-worker with a fake Windows error, here’s one with a single error dialog. Start Notepad or any text editor application then copy and paste the following code:
x=msgbox(“Your Message Here”, Button+Icon, “Your Title Here”)
Customize the button in your error message. Replace without quotes “Button” with one of the following values:
You will have something like this:
x=msgbox(“Your Message Here”, 1+Icon, “Your Title Here”)
Next, customize the icon of your error message. Replace without quotes “Icon” with one of the following values:
You will have something like this:
x=msgbox(“Your Message Here”, 1+48, “Your Title Here”)
Next, customize the title and the contents of your error message. Replace without quotes “Your Title Here” with the title you want to use and without quotes “Your Message Here” with the message you want to display. You will have something like this:
x=msgbox(“This machine will explode!”, 1+48, “Warning”)
When you are finished, press Ctrl + S to save the file. In the save dialog, select “All Files” in “Save as type”. Enter the name of the file then put without quotes “.vbs” as extension name then save the file. For example, without quotes “warning.vbs”. To display the error message you created, just double-click the file.