Notepad is a basic text editor of Windows but you can do many awesome things in it. Here we had listed five awesome notepad tricks which are easy and safe to try on your Windows PC.
Tricks 1: Table
a) Open the notepad.
b) Copy the code given below to notepad.
a) Open the notepad.
b) Copy the code given below to notepad.
@echo off
echo Table of:
set /p table=
set count=1
echo Table Upto:
set /p upto=
:start
set /a mul=%table% * %count%
echo %table% * %count% = %mul%
if %count% EQU %upto% goto end
set /a count=%count%+1
goto start
:end
pause
c) Save this file with .bat extension such as table.bat
d) After saving, open it and see its effect.
Trick 2: PC IP Details
a) Open the notepad.
b) Copy the code given below to notepad.
@echo off
ipconfig
pause
c) Save this file with .bat extension such as ip.bat
d) After saving, open it and see its effect.
Note: To see IP details of your computer, it should be connected to internet.
Trick 3: Text to Speech
a) Open the notepad.
b) Copy the code given below to notepad.
Dim msg, sapi
msg=InputBox("What to speak? Write in box given below."," Pls speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
c) Save this file with .vbs extension such as Text-To-Speech.vbs
d) After saving, open it and see its effect.
Trick 4: Counts till Infinity
a) Open the notepad.
b) Copy the code given below to notepad.
@echo off
set count=1
:start
set /a count=%count%+1
echo %count%
goto start
c) Save this file with .bat extension such as count.bat
d) After saving, open it and see its effect.
Trick 5: Matrix Effect
a) Open the notepad.
b) Copy the code given below to notepad.
@echo off
color 02
:top
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto top
c) Save this file with .bat extension such as matrix.bat
d) After saving, open it and see its effect.
Watch the video below for more information....
If you have any other notepad trick which is safe to use then share it with us by commenting below.
Also see:
HOW TO CREATE A INVISIBLE FOLDER IN WINDOWS
HOW TO LINK SPECIFIC PORTION OF A WEBPAGE
HOW TO CREATE GOOGLE ACCOUNT WITHOUT @GMAIL.COM ADDRESS
For any query feel free to comment below...
No comments:
Post a Comment