Now Use ← and → keys to goto previous and next post.
Hey friends, hi to all of you. We have been showing DOS tricks to you lately and here is a new one. Some of you might not be aware that DOS does not support Ctrl+V shortcut for copy paste.
You have to right click and then Paste the item,like this:
Today, we will show you how to enable this (Ctrl+V) shortcut for pasting in DOS too. Here are the steps:
^V::
SendInput {Raw}%clipboard%
return
#IfWinActive
You have to right click and then Paste the item,like this:
Today, we will show you how to enable this (Ctrl+V) shortcut for pasting in DOS too. Here are the steps:
- Download Autohotkey from here and install it.
- Open Notepad and paste in the following script:
^V::
SendInput {Raw}%clipboard%
return
#IfWinActive
- Save it as <Filename>.ahk.
- Now, double click the file you saved.
- A icon appear in taskbar like this:
- Now, you can paste what you want in DOS by Ctrl+V combination:
NOTE : This will work until Autohotkey is running. If it is closed, it will not work.
HAVE A TRICKY DAY!!!