Skip to main content

PC shortcuts you can not live withoutThis is a featured page

1. Ctrl + C – Copy

Who can live without this shortcut? We are copying stuffs all the time. And this keyboard shortcut is so much easier and faster than Right Click >> Copy.

2. Ctrl + V – Paste

If you copy, you need to paste. So instead of Right Click >> Paste, just hit Ctrl + V.

3. Ctrl + Z – Undo

Oops! You’ve just deleted a piece of text! How to make text magically reappear on screen? The magic words are: Ctrl + Z.

4. Alt, F, W, F – Create new folder in windows explorer

I still wonder why there is still no shortcut to create a new folder. So, this is actually not a keyboard shortcut, but a trick shortcut. Alt – goes to the menu

F – Selects “File” beside “Edit”

W – Selects “New”

F – Selects “Folder”.

5. Windows Logo + E – Open computer

You know that windows logo button between Ctrl and Alt on the bottom left of the keyboard? If you press Windows Logo + E, it will open the computer. No, not automatically disassemble the computer and unscrew it, but open the window where you will see the disk drives and the CD Rom.

6. Windows Logo + D – Show desktop; minimize all windows

You know when you have so many windows open, and you need to go to the desktop to open a program? You don’t need to minimize every single window one by one again. Just press Windows Logo + D and you will arrive on the desktop.

7. Tab – Go to next text area

When filling forms on the web, especially username and password forms, this goes extremely handy. When logging in, after typing the username, just hit “Tab” and tada! – you are at the password form without touching the mouse!

8. Typing name of file you’re looking for – Locating file

Lets say you are in a folder called ‘Pictures’ and you want to locate a file photo called “mejumping.jpg”, just type “mejum…”. Usually you don’t need to type the file’s entire name – just some of its first letters will do.

9. Ctrl + Click – Individually selecting multiple files

Lets say you are on a folder with lots of photos. You only want to select your good photos. How? Click a good photo. Then, Ctrl + click another good photo. Next, Ctrl + click another good photo! See? It doesn’t unselect the previous files but adds the next files you have clicked to the selection!

10. Shift + Click – Select files from one end to another

You are on a photo page.. again. And now, you want to select photos from “PICT1209” to “PICT1281”. How? Click “PICT1209”. Then Shift + Click “PICT1281”. Tada! You have selected all the photos between “PICT1209” and “PICT1281”!

11. Alt + Double click – View file properties

If you want to view the properties of a file, don’t need to Right Click >> Properties. Just hit Alt + Double Click and the properties will appear right before your eyes!

12. Windows Logo + 1, 2, or 3…–Launch quick launch items

If you have items in your Quick Launch (the part on the right of the Start button), here is a very nice way to quickly launch the quick launch. If you want to launch quick launch item #1, hit Win + 1. Item #2? Win + 2. And so on and on and on… until item number 9.

Comments

Popular posts from this blog

Text Ideas in Design - Turn Typography into exciting designs!

Text Ideas in Design  - Turn Typography into exciting designs! TEXT THAT CREATES BACKGROUNDS   Tiling, gradients,  bokeh  and text design interlink to form an interesting background. Bokeh is the photographic blur effect to get a soft, out-of-focus look. Extremely effective and relevant use of handwritten text to form a background and an image. The ad for Australia Post says “If you really want to touch someone, send them a letter.”  The visual shows this literally – a letter hugging a girl. EXTRA-LARGE HEADLINES Looks like designers are having themselves a field day with big, bold headlines.  The kind that stop you in your tracks and make you read. This site has the outsized headline in lower case and the content in all caps in a smart yet simple design that optimizes the use of color and type. Courtesy:  LemonDesign    Here every word begins with the letter ‘A’ which takes center-stage in no uncertain terms.  ...

Web Design Ideas

ooking for something to add a little punch to your website design and make it stand apart?  We bring you some ideas to trigger your creative thoughts and entice the user into your site. Use single page design - keep it simple Create unusual icons  – let your imagination come into play Use attractive navigation  – try out something different Draw on circular elements  to attract the viewer - soften hard lines and angles Use good-looking textures Use CSS3 to create animations, transforms and transitions  –  a great alternative to Flash Try out unusual designs for forms Single Page Design Click here for some great ideas on single page designs! Just Dot This scrolling single-page website uses a simple concept – ideas coming to life on a blackboard, with all the changes, scribbles and erasing that refine the process of ideation. The white and red chalk sketches and typography highlight the site’s promise of “Brilliant ideas come to life”. The J...

Dynamic Grid Output Script Using PHP + MySQL Array Data

<?php // Include database connection include_once  'connect_to_mysql.php' ; // SQL query to interact with info from our database $sql  =  mysql_query ( "SELECT id, member_name FROM member_table ORDER BY id DESC LIMIT 15" );  $i  =  0 ; // Establish the output variable $dyn_table  =  '<table border="1" cellpadding="10">' ; while( $row  =  mysql_fetch_array ( $sql )){          $id  =  $row [ "id" ];      $member_name  =  $row [ "member_name" ];         if ( $i  %  3  ==  0 ) {  // if $i is divisible by our target number (in this case "3")          $dyn...