Skip to main content

Posts

Showing posts with the label notepad

How to hide and password protect a folder in windows 10

Hide and use password protect for Folder in Windows 10 using Notepad. 1. Create a bat file with the scripts (see at below of the post) by copying and paste it to the Notepad. and save as *.bat , for example Private.bat.  Save anywhere you want,  at root of the drive or inside the folder.  See example. My bat file named Private.bat  I put inside the folder. 2. Double click Private.bat It will generate a new folder, in this example the name is PrivateFolder (you can rename/replace it, by setting it in the Notepad).

Keyboard Shortcut For Notepad

Notepad is a common text only editor from Microsoft. For you who often using Notepad, better to know the keyboard shortcut and using it  to simplify and speed up your work. Below are the Notepad Keyboard Shortcuts Purposes Keyboard Shortcut To copy selected text to the Clipboard Ctrl + C To cut selected text to the Clipboard Ctrl + X To deletes one character after the cursor (to the right)    Delete (Del) To deletes one character before the cursor (to the left) Backspace To display help F1 To find the text Ctrl + F To move the cursor down one line Down To move the cursor to the beginning Ctrl + Home To move the cursor to the beginning at the same line Home To move the cursor to the end Ctrl + End To move the cursor to the end at the same line End To move the Cursor up one line Up To move to the left one word Ctrl + Left To move to the right one word Ctrl + Right To paste contents currently on the clipboard Ctrl + V To repeat last search F3 ...

How To Block Website Address

If you want to block a website or blog address, to become it cannot be accessed from your internet browser in your Windows computer, follow the steps below. • Run Notepad and then open the hosts file, located in the directory : Windows\System32\Drivers\etc (In Windows 8,  click here  to run Notepad)

How To Open New Notepad In Windows 8

Many ways to open Notepad in Windows 8,  generally through the Metro Start Screen by typing  Notepad and automatically go to search, and results will appear at the left of the screen , just enter it and then Notepad will open. Or via the keyboard shortcut Windows + Q , go to Notepad icon or type Notepad in search field. The ways to open Notepad as above, can't open to the new Notepad, meaning if there is already an open Notepad before, it will go to that Notepad, not to a new Notepad.

Making Timer Using Notepad

You can make a timer using Notepad with simple code. Paste the code below to your Notepad, save as a bat file, open the Run Command and execute the bat file. Timer is ready. here is the code : @echo off color 0a :1 pause timeout 60 goto 1 Timer unit is in seconds, change the red number you want

How to Remove Space in Notepad

Notepad is a text editor from Microsoft, and every version of Windows has  it. Notepad is a common text only (plain text) editor. we can use it for simple note, programming or others. When you work with notepad, and need to remove the space/s : Press Ctrl + H  In the column Find what , fill with Space Replace with:  none (leave blank)

How To Convert Outlook Notes To be Text Files

In this post i will tell you how to change, convert, or export Outlook Notes to become  Text/txt (notepad) files. Below are the steps : Create a new folder  in the local drive, for example in drive C  with the name of folder is notes

How To Show / Display Time and Date Every Time Opening The Notepad File

With this trick you can make a simple diary or notes using notepad. Every time when you open the file (this notepad file), it will always display the current time and date first automatically, (you don't need to type the time/date manually).

Make Caps Lock Button On Off Simultaneously

With Caps lock key  is blink toggle between on and off , user of the computer will feel  frustration, because can't write characters correctly. You can do this thing to your friend's computer, with smile :) Open Notepad Copy and Paste script  below :

How to Make Simple Browser Calculator

This simple calculator created using javascript, so to open it is by using internet browser (Chrome, Mozilla, Internet Explorer, Opera, Safari, etc).   You can create this calculator for online calculator at your blog/website, or you can save it as a html file in your harddisk or USB flashdisk. Just copy and paste script  below to the HTML/Javascript Gadget  for making online calculator. Or Copy and paste to  Notepad and save as HTML file for offline calculator.

How To Make Matrix Effect Using Notepad

Many things can do with Windows Notepad, one is : making 'matrix' effect, to impress your friends, to pass the time, etc. Very easy , you only need to copy and paste a few code to the notepad, and save as a file with bat extension. Open Notepad.

How to Swap Mouse Button Function (right to left , left to right) Using Notepad

With computers do not always have to be serious, a lot of things you can do to reduce the stress of work or daily routine. for example with friends by swapping her/his  Mouse button function,  right button becomes left button and and vice versa left button becomes right button, so friends will feel confused. :) Swapping  the mouse button function can be done by simply write a few commands in Notepad. Open Notepad type the following code :

How To Copy Command Prompt Display Contents To Notepad or Ms Word

When you work with Command Prompt, there may be information or data that are needed to be saved  or transferred to a file,  as a documentation, material analysis or other purposes. To copy the words, codes and all display contents in the command prompt page, follow this easy steps : • Right click on Command Prompt area

How to Hide Text Document Inside Notepad

If you have personal or confidential text data  and want to hide it without sounding hide , Put inside the computer harddisk or other storage media such as external harddisk or flashdisk. There's one way  to hide it in Notepad, by using a simple and easy command. The disk must use NTFS formatted (generally windows now use the NTFS format) Open Notepad through the Command Prompt (not through Start Programs ==> Acessories)

How to Combine Multiple Text Files into One File

There is an easy way to combine a number of text files become one text file with a simple command via the command prompt. Here are the steps: • Put the files to be merged into one folder for example I put it in a folder with the name is Merge in drive D

Script to make the computer speaks according to the words we wrote

With a few script, we can make the computer speak according to the text that we have written. Follow these steps : • Open Notepad • Copy and Paste to notepad these script bellow Dim message, sapi message=InputBox("What do you want me to say?","Speak to Me") Set sapi=CreateObject("sapi.spvoice") sapi.Speak message