Friday 23 September 2016

Cool Notepad Tricks for your Computer 2016.

Cool Notepad Tricks for your Computer 2016.

Cool Notepad Tricks 2016

Notepad is one of the most used utility which is pre installed in your PC. You can do a lot of things with it. Shocked? Yea! Its natural. Even, I was also shocked, when I got to know that we can play a lot of cool and awesome tricks with notepad. Yes! You have heard it right. So, Lets move further to some awesome tricks of Notepad! First of all, Let me explain What is notepad basically.

Cool notepad tricks is one of most searches keyword now a days. So, team of Dreamy Tricks is back with a exciting post in which we will share all cool notepad tricks.

Also see : Collection of Best root apps

What is Notepad?

It is a program which is pre installed in every OS, whether it is Ubuntu or any Windows OS like Windows 7 or Windows XP or even Windows Vista. It is pre-installed in every OS, whether It is free or not. So, Today We are discussing some amazing tricks of Notepad, by which you can have a lot of fun as some of tricks are funny, amazing as well as cool. SO, just Tighten your belts to learn Notepad tricks which are super interesting cool as well as amazing and can be used to have fun with your friends.

Also see : Best Whatsapp DP

10 Best Cool Notepad Tricks to try out:

Create fake Windows error with Notepad:

This is one of coolest trick of Notepad, which I think everyone should try once to prank with friends without any problem. To, create fake message by notepad, Follow this procedure :

Open Notepad.
Type X=Msgbox(“Put your Message Here”,0+16,”Put Title Here”)
Replace Put your message here and Put title here with your keywords.
Save, this file as error.vbs.


Force CD Drive to Pop out continually:

Open Notepad, and Paste this line :
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Save this file as “DreamyTricks.VBS“
Now, When You will open this file, CD Drive will pop out.
Also check out : DroidVPN premium account for free 2016

Create Diary in Notepad:

This amazing Notepad trick will allow you to Create a diary Entry in Notepad. I mean, Whenever you will publish any post, It will automatically use Time and Date Stamp. Isn’t it Cool? So, Follow these steps to create Diary in Notepad:

First, of all you have to open Notepad trick, as Its a notepad trick 😉
Type “.LOG”.
Save file as Log.txt.
Now, whenever you will write any thing in this file, It will simply put Date and Time Stamp.


Open Notepad in your friend’s computer continuously:

Type in Notepad :

@ECHO off
:top
START %SystemRoot%system32notepad.exe
GOTO top

Save it with Filename – DreamyTricks.bat and Send it to your friend.

Recent Post: Best iOS Emulator for Windows

Make your Keyboard LED to dance:

The LED lights of any Keyboard (Caps Lock Key, Num Lock Key and Scroll Lock). You can force them to dance using this trick. It is one of cool notepad tricks which you must try to have fun.

Open Notepad.
Paste this code in Notepad :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop

Save this File as DreamyTricks.vbs.
Now, whenever you will click this File, your LED light will simply dance.


Test your Antivirus using Notepad:

This is amazing Notepad trick to test antivirus program. Just Follow this method :

Open, Notepad and Paste this code :
X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

Save this File as DreamyTricks.exe.
Now, if your antivirus is working perfectly, than your Antivirus will force you to delete it.
If, nothing happens than Just tighten your paints to buy New Antivirus Program.
Recent tutorial: How to Save YouTube videos to Google Drive

Add Matrix effect using Notepad:


To, use this Notepad trick, Follow this method:

Open Notepad, Paste the following code in Notepad:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save, file as DreamyTricks.bat.



Repeat messages on Screen Continuously:

Open your notepad and Paste following code:
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN

Save the file as DreamyTricks.bat

Also see – How to port rom for MTK device.

Type “You are a fool” Continuously:

To, use this Cool Notepad trick, Simply follow below steps :

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop

Save, File as Dreamytricks.vbs and your are done.

Convert Text to Audio easily.

Force Windows to Shut Down :

This notepad trick, will let your PC shut down your Computer in a single click. SO, If you want to Turn Off your Computer in one click, than follow this method :

Open Notepad.
Paste @echo off in next line.
Paste * Shutdown computer in next line.
Paste shutdown -c “Sleep Tight” -s in next line.
Save the file as D.bat extension and you are done.
Now, whenever you want to shut down your Windows, just open this file, your PC will shut down automatically.

Trick to Create Password Protected Folder using Notepad :

Now, you dont need to Download Folder Lock folder,as you can create same using Notepad. Isn’t it amazing Notepad Trick.So, follow below method to create password protected folder.

Open Notepad and Paste following code :
@ECHO OFF
title Folder Private
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p “pass=>”
if NOT %pass%== dreamytricks.com goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

dreamytricks.com, which is written in red text is password.
Save file as private.bat.
Now, whenever you will create private.bat a Private folder will get created.
Paste those files which you want to lock in that folder.
Now, No One will be able to open the file without password.

 Are these Notepad tricks useful?
These notepad tricks are simply amazing. Some of notepad tricks given below are useful also, as there is also one notepad trick, using which you can turn off your computer in one click without any kind of problem. These notepad tricks can also be used to play pranks with friends or by taking revenge from them, by some danger notifications which would be a lot of fun. We Latest Tricks has listed these notepad tricks for educational purposes only.Enjoy.

How to Find Direct Download Link Of Any Movie.

The method is quite simple and you just need a cool Google trick to get the downloading link of any movie by just getting the exact URL of the movie stored server by giving perfect query to the Google robots and with that you can find the direct download link of any of your favorite movie.

Method 1:-

Steps to Find Direct Download Link Of Any Movie:

Step 1) First of all launch out the web browser on your device.

Find Direct Download Link Of Any Movie
Step 2.) Now type the name of a movie that you want to download and after name, copy and paste the below code along with the movie name.

Movie Name -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mp4|wma|aac|avi)

Find Direct Download Link Of Any Movie
For Example  :- Now You See Me -inurl:(htm|html|php|pls|txt) intitle:index.of “last modified” (mp4|wma|aac|avi)

Step 3.) Now you will get the Google result and you can browse out either first or second result and you will get the direct download link of the movie.


Find Direct Download Link Of Any Movie
That’s it! You are done. with this, now you will get the direct download link of any movie and download it with your favorite download manager.

Method 2:-

Steps to Find Direct Download Link Of Any Movie:

Step 1) First of all in Google, copy the below code:

intitle:index.of? mkv 

Find Direct Download Link Of Any Movie
Step 2) Now open google.com in your browser and paste the above code there and after this code, you have to enter the name of the movie that you want to download.
For example, if you want to download the movie Fast And Furious 8 then simply enter the code:

Find Direct Download Link Of Any Movie
intitle:index.of? mkv Fast And Furious8 
Step 3) Hit enter there and you will now see lots of search results there and they may or may not be containing the actual name of your movie. Press CTRL+F and search for your movie. Simply click on the movie link.


Find Direct Download Link Of Any Movie
Now when you open in then you will see the PHP page containing the file of the movie that you are going to download.

Simply click on it, that’s it you are done, now your downloader will detect that and you are done, a movie will start downloading in your device. You can also search for any of your favorite formats to download the movie by replacing Mkv with your desired format.

So above is the way for Finding Direct Download Link Of Any Movie. Best and easy way to get your favorite movie over the internet without searching out in lots of sites and wasting your precious time. Also, this method will work for music too by replacing mp4 with mp3 in the line above. Hope you like this cool Google search trick, don’t forget to share it with other too. Leave a comment below if you have any related queries.
Visit My Other Website:-www.Edutechweb.com

Sunday 11 September 2016

How to Open ASPX File and Convert It To PDF In Windows?

How to Open ASPX File and Convert It To PDF In Windows?


Below are the steps you need to follow to change the file from aspx to pdf in Windows 7:

(1) Steps To Open ASPX File:

1. Place the ASPX file on the desktop if it placed on one of the drives of your PC which has Windows 7

2. When you will double click the file it will give the error: “Windows can’t open this file”

3. From the available options select the “Select a program from a list of installed programs” and click OK

4. Select Google Chrome from the options in this list


Steps To Convert ASPX to PDF:-

1. First you need to follow above steps to open ASPX file in Google Chrome Browser

2. Press Ctrl+P to open print page pop-up windows

3. In the Destination option on the left there is an option “Change” which will convert the file from .aspx to pdf



4. Under the “Change” button and select the “Save as pdf” option



5. Now click on the Save button which you will see highlighted as Blue



6. Your file is now converted and saved from aspx to PDF format

Since the above steps are only for Windows 7 browser, yet most laptops today are updated to Windows 8.1 and Windows 10, we also bring to you the steps to change the file format from ASPX to PDF for these operating software.