Your Ad Here

- Time Saving Shortcut for Microsoft Office (WORD).

This can save time and the effort of switching from the keyboard to the mouse to execute simple commands. Print this list of Word keyboard shortcuts and keep it by your computer for a quick reference.


Microsoft WORD Shortcuts

Note: A plus sign indicates that the keys need to be pressed at the same time.



Action Keystroke

Document actions

Open a file <<=-=-=-=->> CTRL+O
New file <<=-=-=-=->> CTRL+N
Close a file <<=-=-=-=->> CTRL+W
Save As <<=-=-=-=->> F12
Save <<=-=-=-=->> CTRL+S or SHIFT+F12
Print Preview <<=-=-=-=->> CTRL+F2
Print <<=-=-=-=->> CTRL+P
Show/Hide paragraph symbols <<=-=-=-=->> CTRL+*
Spelling and grammar <<=-=-=-=->> F7
Help <<=-=-=-=->> F1
Find <<=-=-=-=->> CTRL+F
Replace <<=-=-=-=->> CTRL+H
Go To <<=-=-=-=->> CTRL+G

Cursor movement
Select all - entire document <<=-=-=-=->> CTRL+A
Select from cursor to beginning of line <<=-=-=-=->> SHIFT+Home
Select from cursor to end of line <<=-=-=-=->> SHIFT+END
Go to beginning of line <<=-=-=-=->> HOME
Go to end of line <<=-=-=-=->> END
Go to beginning of document <<=-=-=-=->> CTRL+Home
Go to end of document <<=-=-=-=->> CTRL+End

Formatting
Cut <<=-=-=-=->> CTRL+X
Copy <<=-=-=-=->> CTRL+C
Paste <<=-=-=-=->> CTRL+V
Undo <<=-=-=-=->> CTRL+Z
Redo <<=-=-=-=->> CTRL+Y
Format painter <<=-=-=-=->> CTRL+SHIFT+C
Left alignment <<=-=-=-=->> CTRL+L
Center alignment <<=-=-=-=->> CTRL+E
Right alignment <<=-=-=-=->> CTRL+R
Justified <<=-=-=-=->> CTRL+J
Delete previous word <<=-=-=-=->> CTRL+Backspace
Apply bulleted list <<=-=-=-=->> CTRL+SHIFT+L
Indent <<=-=-=-=->> CTRL+M
Page break <<=-=-=-=->> CTRL+Enter


Text Style
Font face <<=-=-=-=->> CTRL+SHIFT+F
Font size <<=-=-=-=->> CTRL+SHIFT+P
Bold <<=-=-=-=->> CTRL+B
Italics <<=-=-=-=->> CTRL+I
Underline <<=-=-=-=->> CTRL+U
Double underline <<=-=-=-=->> CTRL+SHIFT+D
Word underline <<=-=-=-=->> CTRL+SHIFT+W
All caps <<=-=-=-=->> CTRL+SHIFT+A
Change case <<=-=-=-=->> SHIFT+F3
Subscript <<=-=-=-=->> CTRL+=
Superscript <<=-=-=-=->> CTRL+SHIFT+=
Make web hyperlink <<=-=-=-=->> CTRL+K


Tables
Go to next cell <<=-=-=-=->> Tab
Go to previous cell <<=-=-=-=->> SHIFT+Tab
Go to beginning of column <<=-=-=-=->> ALT+PageUp
Highlight to beginning of column <<=-=-=-=->> ALT+SHIFT+PageUp
Go to end of column <<=-=-=-=->> ALT+PageDown
Highlight to end of column <<=-=-=-=->> ALT+SHIFT+PageDown
Go to beginning of row <<=-=-=-=->> ALT+Home
Highlight to beginning of row <<=-=-=-=->> ALT+SHIFT+Home
Go to end of row <<=-=-=-=->> ALT+End
Highlight to end of row <<=-=-=-=->> ALT+SHIFT+End
Column break <<=-=-=-=->> CTRL+SHIFT+Enter

Miscellaneous

Copyright symbol <<=-=-=-=->> ALT+CTRL+C
Date field <<=-=-=-=->> ALT+SHIFT+D
Go to footnotes <<=-=-=-=->> ALT+CTRL+F
Show/Hide <<=-=-=-=->> CTRL+SHIFT+8
Thesaurus <<=-=-=-=->> SHIFT+F7
Page break <<=-=-=-=->> CTRL+Enter

Stumble Upon Toolbar

- Emulate Mouse Movement Using Keyboard.

Have you ever encountered a bad situation whereby your computer system fails to detect mouse in the middle of work that requires lots of mouse movement? Unless you keep a spare computer mouse anytime ready for replacement, else this software utility could offer a great help to quickly get you continue on your current task. Named as Mouse Emulator v2.0, it emulates mouse movement with a combination of number key press on your hardware keyboard.



Mouse Emulator v2.0 utilizes numeric keypad (just press Shift + NumLk to activate for laptop)buttons to simplify the mouse movement. For instance, user can just press on keypad number 1 to emulate left mouse click or keypad number 2 to emulate right mouse click. Further clicking on same buttons will further move them in respective direction. Below are the keys recognized by Mouse Emulator as summarized below:

Keypad 1: Left mouse click
Keypad 2: Right mouse click
Keypad 3: Middle mouse click
Keypad 4: Move left
Keypad 5: Move down
Keypad 6: Move right
Keypad 8: Move up
Keypad 9: Scroll up


Mouse Emulator v2.0 is a freeware and you probably won’t notice its existence as it only consumes 10kB of your system hard disk space. To deactivate Mouse Emulator, just right click on the mouse icon as located in the taskbar. While it may not able to totally replace your actual mouse usage but it will definitely able to assist you in case of any emergency when mouse usage is important. If you think it suits you, just go to download at Mouse Emulator v2.0 with no cost.

Stumble Upon Toolbar

- Windows XP presents STAR WARS (Movie).

Hey Friends, if u want to see Star wars movie in ur computer system then, follow the steps:-


1. Ur operating system should be XP.

2.Then connect to the internet.

3.Then finally type " telnet towel.blinkenlights.nl " into the RUN menu.





















Microsoft hid a version of Star Wars done entirely with ASCII in the Windows XP operating system.

Stumble Upon Toolbar

- No Mic...Don't Worry, Turn u'r Headphones into a Mic Instead.


Heres how you do it:



1.)Take any headphone you want. Don't matter if its the buds or the ones that go around your ear.

2.)Open up Sound Recorder(If your using Windows)

3.)Plugin your headphones in the Pink Jack on your Laptop or Desktop.

4.)Press the record button on Sound Recorder and put the left part up to your mouth and make noise. Do the same for the right side. Which ever part you get results from(you will know this by the sound recorder showing the movement of sound in the display)



There you go. Thats it. Iv tried this with every pair of headphones I own. Iv bought all mine from the dollar store, very very very cheap pair and they work. The same should work for you. Now the next time someone asks if you have a mic and you say no, Think again. You might have to talk a little louder than normal, but at least you have a Mic.

Works great with Skype, MSN or any chat clients. ENJOY!

Note: Might not work for some HeadPhones.

Stumble Upon Toolbar

- Create your own Folder Lock in FEW simple steps.

Step #1:
Open Notepad and copy the below code.

cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker "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%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End


Step #2:

Save as locker.bat.

Thats it !!....your folder lock is ready for use !!



Now, How to use this customized Folder lock:

Step #1
First things first, right click the locker.bat file you just created and Open With "Notepad" (or with any of the editing tools you have.). Find the line:

if NOT %pass%==type your password here goto FAIL
Approximately 24th Line in the code. Type in your password where it says "type your password here" (without quotes). For Example:

if NOT %pass%==sevenwonders goto FAIL

Here, sevenwonders is the password. Save it.

Customising is Over !!


How to use the Customised Folder Lock:

Step #1
When you run the Locker.bat file for the first time, it will automatically create a folder named "Locker" in present working folder.


Step #2
Copy the important files in the Locker Folder.

Step #3
Double Click on the "locker.bat" file again. It will prompt you :

Are you sure you want to lock the folder ?

Step #4
Press Y for Yes or N for No.

Thats it....your Folder is locked.




To unlock the folder follow the below steps:

Step #1
Double Click on the Locker.bat once again. It will prompt you for the password.

Step #2
Enter the password you entered in the locker.bat file earlier while creating the BATCH file.

Step #3
Press Enter...

Your folder is back again !!

Stumble Upon Toolbar

- Access Internet throught Microsoft Calculator.

This is not a very agile form of a trick but does help you when ur browser is not in a comfortable zone.

When your browser(s) is/are messed up for some unexplainable reason

1. Open your MS Calculator. This is normally found in Start => All Programs => Accessories => Calculator.

2. Open the help-window by pressing the F1 key.

3. Click the top-left corner icon of the help window once (Standard is a Document with a Questionmark).

4. Select Go to URL-address.

5. Type your address into the avaliable field, but remember to type http://, and not just www. (or equivalent).

6. Have fun!

Hope you remember this in case all else should fail!

Stumble Upon Toolbar