General Navigation 
Tab: Forward one item.
Shift + Tab: Backward one item.
Ctrl + Tab: Cycle through tabs/child 
windows.
Ctrl + Shift + Tab: Cycle backwards through tabs/child windows.
Enter: If a button’s selected, click it, otherwise, click default button.
Space: Toggle items such as radio buttons or checkboxes.
Alt + (Letter): Activate item corresponding to (Letter). (Letter) is the underlined letter on the item’s name.
Ctrl + 
Left: Move cursor to the beginning of previous word.
Ctrl + Right: Move cursor to the beginning of next word.
Ctrl + Up: Move cursor to beginning of previous paragraph. This and all   subsequent Up/Down hotkeys in this section have only been known to work   in Rich Edit controls.
Ctrl + Down: Move cursor to beginning of next paragraph.
Shift + Left: Highlight one character to the left.
Shift + Right: Highlight one character to the right.
Shift + Up: Highlight from current cursor position, to one line up.
Shift + Down: Highlight from current cursor position, to one line down.
Ctrl + Shift + Left: Highlight to beginning of previous word.
Ctrl + Shift + Right: Highlight to beginning of next word.
Ctrl + Shift + Up: Highlight to beginning of previous paragraph.
Ctrl + Shift + Down: Highlight to beginning of next paragraph.
Home: Move cursor to top of a scrollable control.
End: Move cursor to bottom of a scrollable control.
File Browser
Arrow Keys: Navigate.
Shift + Arrow Keys: Select multiple items.
Ctrl + Arrow Keys: Change focus without changing selection. “Focus” is   the object that will run on Enter. Space toggles selection of the   focused item.
(Letter): Select first found item that begins with (Letter).
BackSpace: Go up one level to the parent directory.
Alt + Left: Go back one folder.
Alt + Right: Go forward one folder.
Enter: Activate (Double-click) selected item(s).
Alt + Enter: View properties for selected item.
F2: Rename selected item(s).
Ctrl + NumpadPlus: In a Details view, resizes all columns to fit the longest item in each one.
Delete: Delete selected item(s).
Shift + Delete: Delete selected item(s); bypass Recycle Bin.
Ctrl while dragging item(s): Copy.
Ctrl + Shift while dragging item(s): Create shortcut(s).
In tree pane, if any:
Left: Collapse the current selection if expanded, or select the parent folder.
Right: Expand the current selection if collapsed, or select the first subfolder.
Numpad 
Asterisk: Expand currently selected directory and all subdirectories. No undo.
Numpad Plus: Expand currently selected directory.
Numpad Minus: Collapse currently selected directory.
Accessibility
Right Shift for eight seconds: Toggle FilterKeys on and off. FilterKeys must be enabled.
Left Alt + Left Shift + PrintScreen: Toggle High Contrast on and off. High Contrast must be enabled.
Left Alt + Left Shift + NumLock: Toggle MouseKeys on and off. MouseKeys must be enabled.
NumLock for five seconds: Toggle ToggleKeys on and off. ToggleKeys must be enabled.
Shift five times: Toggle StickyKeys on and off. StickyKeys must be enabled.
6.) Microsoft Natural Keyboard with IntelliType Software Installed
Win + L: Log off Windows.
Win + P: Open Print Manager.
Win + C: Open 
control panel.
Win + V: Open clipboard.
Win + K: Open keyboard properties.
Win + I: Open mouse properties.
Win + A: Open Accessibility properties.
Win + Space: Displays the list of Microsoft IntelliType shortcut keys.
Win + S: Toggle CapsLock on and off.
Remote Desktop Connection Navigation
Ctrl + Alt + End: Open the NT Security dialog.
Alt + PageUp: Switch between programs.
Alt + PageDown: Switch between programs in reverse.
Alt + Insert: Cycle through the programs in most recently used order.
Alt + Home: Display start menu.
Ctrl + Alt + Break: Switch the client computer between a 
window and a full screen.
Alt + Delete: Display the Windows menu.
Ctrl + Alt + NumpadMinus: Place a snapshot of the entire client window  area on the 
Terminal server clipboard and provide the same functionality  as pressing Alt + PrintScreen on a local computer.
Ctrl + Alt + NumpadPlus: Place a snapshot of the active window in the  client on the Terminal server clipboard and provide the same  functionality as pressing PrintScreen on a local computer.
RAM – Random Access Memory
is one of the main 
component of computer that is responsible for the process of the operating system.
Since all the 
Operating systems support Multiprocessing, hence require a good RAM speed.
Since  all the current running processes are stored onto the RAM, it  slows the  system speed. Sometimes the process which have executed but  are not  required by the OS are stored on the RAM. So, here is a tricks  to  increase your RAM speed
We can clean the RAM just by using Notepad .
yes using notepad & no need to buy any software for that
The process  is as follows.
Open Notepad
Type
FreeMem=Space(64000000)
save it as “CleanRAM.vbs” on desktop
Note: Type the name of file along with inverted commas
Run the file and your RAM may be free.
Of course you can edit the code in the file for a greater “cleaning-progress”.
For example:
FreeMem=Space(1280000000)
FreeMem=Space(2560000000)
FreeMem=Space(5120000000) 
      

                                                              Javascript  is an object oriented scripting language.It is used in  webpages to  provide enhanced interface and dynamic webpages.It is mainly  used as  client-side scripting language.There are some cool javascript  tricks  that will blow your mind.You don’t need any programing knowledge  to use  these tricks.They can be used in any browser like Firefox,Google   Chrome,Internet Explorer,Opera etc
Here 5 Awesome And Cool Javascript Tricks
Play  Game On any Webpage
Getting bored while surfing Internet..Lets play a game to 
refresh  your mind.Open any website in your browser.Now copy and paste the  following javascript code in your browser
javascript:var%20s%20=%20document.createElement('script');
s.type='text/javascript';document.body.appendChild(s);
s.src='http://erkie.github.com/asteroids.min.js';void(0);
Press 
Enter Key.Now you can see a Triangular icon on the Left-top corner of your browser.Rotate this icon with 
W,
A,
D and use 
Space-bar to   fire.Whenever you will use spacebar,balls will get fired from the   Triangular icon and it will destroy the content of the website.
Open Infinite Alert Boxes
By using this javascript code your browser will open infinite Alert boxes.
javascript:while(1){alert('Restart your browser to close this box!')}
To stop this code you have to restart your browser.
Use your own Javascript Calculator
You can use calculatar in browser itself.For this you have to edit the values in the javascript code.E.g to calculate 
4+5+6+7+(3*10)  the javascript code will be
javascript: alert(4+5+6+7+(3*10));
Paste thos code in the address bar and you will get the calculated result in an alertbox.
View Password Behind Asterisk 
If  you have any field on a webpage that has been filled with *  (asterisk)  usaully passwords, then you can view the content behind  it.Simply  paste this code in Address bar and press enter.
javascript: var p=r(); function r(){var g=0;var   x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k   < w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if   (!x) alert('Password not found in ' + g + ' forms');}function z(f){var   b=false;for(var i=0;i < f.length;i++) {var e=f[i].elements;for(var   j=0;j < e.length;j++) {if (h(e[j])) {b=true}}}return b;}function   h(ej){var s='';if (ej.type=='password'){s=ej.value;if   (s!=''){prompt('Password found ', s)}else{alert('Password is   blank')}return true;}}
 
                             
      

                                                             You can display your name with time instead of 
AM/PM in taskbar of 
windows 7,
vista and 
windows Xp without using any third party software.You can use two names and they will be automatically changed during daytime (
AM) and Night (
PM).This doesn’t require any registry editing or complex programming.
Trick to Display your Name with Time in Taskbar:-
- Click on your time in the taskbar and then click on the Change Date and time Setting.
- It will open new a window, click on the Change Date and Time Setting.
- Now click on the Change Calendar Setting.
- In the customize Format window select Time Tab.
- In this tab look for AM/PM symbol and give any name that you want to display along with Time
- Click  on OK button to save changes.
                             
      
 This is a guest post by John Edget. If you wish to write one kindly check out the guidelines to write a guest post.
                                                              
This is a guest post by John Edget. If you wish to write one kindly check out the guidelines to write a guest post.
There are times when your computer could perform slower than normal,   while there are times you could just get frustrated and pissed off. Slow   computer performance can also alter your productivity output and leave   you performing lesser than you would on a normal day.
Your computer isn’t running at the same speed it was when you got it   new because a lot of changes have happened between that space of time   and now. The more applications, files and folders and even the new   documents you create everyday have their impact in making your computer   running slow. Following are some ways to quickly recover the normal   speed of your computer.
Remove Spyware and Protect your Computer against Viruses
The  first thing you should diagnose your slow computer for is virus   infection. Viruses can come into your computer so far there is a contact   between your computer and other computers – this can also be through   the internet.
To battle virus infection, you must have a reliable antivirus program   installed on your computer. This antivirus program must be kept up to   date, regularly. The most important thing in having an antivirus program   is keeping it updated regularly. With my computer which I use for my   blog that talks about discounts for weight watchers and bistro md   coupon, I have made it a point of duty to see that my antivirus program   is of the latest version and I don’t miss an update.
Make access to data easy for your computer
When  accessing data on your computer’s hard disk becomes difficult  for your  system it will result in your computer performing slow. The  data on  your computer’s hard drive may become cluttered and result in  causing  your computer to become slow in performance.
In essence, your data are getting cluttered because your hard disk is   fragmenting them. To make accessing data on your computer’s hard drive   easy for your computer you’ll have to run disk defragmenter on your   system regularly. If you use your computer every day, you should   defragment your hard disk once every week.
Free up disk space
Another thing you should do  to make your computer perform faster is  to free up disk space. Over  time, you must have saved a lot of files on  your hard drive and if you  do not remove the ones that are no-longer  useful to you, your system  will continue to perform slowly.
Start sorting out the important files on your computer from the files   you no longer need. Keep you important documents in specified folders   to save them from mixing up with old and unused files so that you can   easily remove the ones you no longer need from your computer.
Clear up Temporary Internet Files
Temporary  internet files are, perhaps, the major elements that  contribute to your  computer being slow in performance. Clear the  temporary internet files  your web browsers must have saved on your  computer’s hard disk to save  more disk space.
You can also limit the amount of your hard disk space your cache will   be using to a very minimal amount. This will eradicate every   possibility of your temporary internet files taking up too much of your   hard disk space. As you can see in the image below, I limit the amount   of space my internet cache will be using to 1024MB or 1gb which is  still  far from the 175MB my cache has used.
  
 
                              
      

                                                              When we  plugin any external storage media like USB/Memory Card etc  and transfer  data from/to it.If your external hardware is used by any  background  process and you remove the hardware directly it may corrupt  the  data.You should always Safely Remove the hardware device to assure  that  your data is safe .But most of the people usually forget to do the   same.
You can create shortcut to safely remove hardware device on you Desktop   which is more visible and can be easily used to remove the hardware   devices.
How to Create a Desktop Shortcut of Safely Remove Hardware:
- Right click on your Desktop and Click on New.
- Now choose Shortcut option from the list.
- In the browse location just Copy/Paste the following text
RunDll32.exe shell32.dll,Control_RunDLL hotplug.dll
and click on 
Next button.
- Now it will ask you to Name the shortcut.Name it something like Safety Remove USB and then click on Finish button.
- There will a shortcut icon on your Desktop just double click on it and your external media will be Removed Safely.

This shortcut can also be very helpful to you when your Safely Remove   icon got disappear from your notification area. This trick works on all   Microsoft OS Window 7/Vista and Window XP. 
  
 
                              
      

                                                              Securing  confidential and personal data is always considered as a  sophisticated  task.You can use freeware third party softwares like 
Axcrypt, 
Disguise Folders etc to encrypt your data.If somehow you can’t use these softwares (
installation restrictions) then you can secure your data using notepad.This trick works in windows xp,vista and windows 7.
Trick to Lock Folder without any Software
- Open Notepad [Start-->Run-->Notepad].
- In your Notepad just Copy/Paste the below code.
 cls
:End
@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%==tipstricks 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
- In the above batch code the password has been set as tipstricks.You can change it by editing the following line
if NOT %pass%==tipstricks goto FAIL
- Now save this notepad file as yourfoldername.bat ,here .bat is extension of your file. For now I am creating pctipstricks.bat file.
- Now a .bat (system) file will be created.
-  Double Click on this .bat file and you will see a Locker Folder at the same location where your .bat file is saved.
 
- Double click on that Locker folder and store your personal data in it.
- After storing all your data in that folder again double click on .bat file and press Y there to Lock the folder and press Enter.
- Now your Locker will hide and only .bat file will be there.
- Double Click on this .bat file and give your password (here tipstricks) and hit Enter.
That’s it. Now every time you want to open your secret folder you  have  to enter the password. You can update this folder any time and  infinite  number of times. 
  
 
   
Some  PDF files come with restrictions that limit our work. We can’t print,   copy or edit the content of an encrypted PDF file. And this could be  the  case even when you have the legal right to modify the document or  copy  from it that are protected by a long and complex password.  You  know the passwords but it still feels inconvenient and boring  typing  them each time you have to open a PDF file. 
There’s a free Windows utility called BeCyPDFMetaEdit   that can help you remove passwords from PDF files* but without make  any  other change to the document. (I am not sure why the developers  picked  such a complex name for this useful utility). To Remove Passwords from your PDF Files: -
  
  
2. Launch the program and it will ask your for the location of the PDF file.
  
3. Before you select and open the PDF, change the mode to “Complete Rewrite.”
  
4. Switch to the Security tab and set the “Security System” to “No encryption.” Click the Save button and your PDF will no longer require a password to open.
  
Note: - To Remove Password From PDF File, You have to once enter the correct password on BeCyPDFMetaEdit.  
 
 
 
  CHANGE WINDOWS LOGON SCREEN 
u can use desktop  enhancement s/w which can actually chage the complete  appearence of the  windows log on screen if that is what you ment and  also u can get  transperency , etccc.. or follow :To change the logon  screen saver,  follow these steps.
WARNING: If you use Registry Editor incorrectly, you may cause serious   problems that may require you to reinstall your operating system.   Microsoft cannot guarantee that you can solve problems that result from   using Registry Editor incorrectly.
Use Registry Editor at your own risk.
1. Click Start, and then click Run.
 2. In the Open box, type regedt32, and then click OK.
 3. In the Registry Editor window, locate the following registry key
:HKEY_USERS\.DEFAULT\Control Panel\Desktop
 4. In the right pane, double-click SCRNSAVE.EXE.
5. In the Edit String dialog box, type the name of the screen saver that   you want in the Value data box, and then click OK. For example, if you   want to use the Mystify screen saver as your logon screen saver, type   ssmyst.scr. IMPORTANT: Make sure that you correctly specify the path to   the screen saver. If the screen saver is located in   %SystemRoot%\System32, the explicit path is not required. 6. Click Exit   on the File menu to quit Registry Editor.
The logon screen saver changes to the screen saver that you specified.
also u can use the software TUNE UP UTILITIES.Also this software can be   used to change windows defult icons,registry cleaning,logon screen   changing,……………etc a lot of applications.I swear its a very good   ,powerful and user friendly……………
 
 
  Many wifi user think about cracking the wifi or wap password.
Many wifi user think about cracking the wifi or wap password.So , the solution is here…
Its working fine…
                              Follow the steps below…
download wep password cracker software 
AIRCRACK. then,
step 1: extract it on desktop,
 step 2: open up BIN folder,
step 3: Now,open AIRCRACK-NG GUI
step 4:
step 5: 
step 6: 
step 7:
That all...
 
 
 
 
 
 First Of All Download Attachment .
Then Click On Midlet – Load Jar…
You Can Run All Java Files In This Kemulator.
Use Mobile UCWEB Or OPERAMINI In Computer.
Firstly Open Ucweb Or Operamini In Kemulator.
 Then Click On Menu-Tools-Connect To The Network.
 Enjoy Full WAP.
If You Have Moded Application Then Use Free GPRS In Computer. 
 
 
 
 
                              
      

                                                             Downloading files from the 
Torrents site is easy and completely legal (
unless you are downloading copyrighted files).Downloading speed from torrents depends upon various factors like 
seeders, 
leechers, 
internet connection   etc.If have high speed internet connection but still not getting good   downloading speeds then you can use IDM to download them.There are   various methods on the internet to do this but this is the easiest,   simplest and tested method.
How to Download Torrent Files with IDM:
- Open  www.torrentz.eu .Search and Download the torrent file (.torrent) of your desired file from there.
 
- Once you have downloaded that torrent file then go to the website www.torcache.net
- Now upload that torrent file that you have just downloaded and click on the cache button.
 
- This will generate a new torrent link of your file just copy that link.
 
- Now go to the www.torrific.com and get register there if you don’t have account  otherwise login into your account.
- In the text field paste that new torrent file that you have get in the 4th step and click on get button.
 
- You will see all the torrent files that are present in that torrent . Click on initiate bittorrent transmission button.
 
- Now all the files that are present in that torrent file will be   available to download just click on any of the file that you want to   download and IDM window will popup.
 
- Now Start Downloading your file.
You should use this method only if you are getting very poor speed   with your torrent client because if you download it with IDM the link   will not be resumable and you have to finish it without breaking your   internet connection. 
  
 
 
 Run Trial programs  forever.In this post I’ll show you how to hack a  Software and run the  trial program forever.Most of us are familiar with  many softwares that  run only for a specified period of time in the trial  mode.Once the  trial period is expired these softwares stop functioning  and demand for  a purchase.But there is a way to run the softwares and  make them  function beyond the trial period.Isn’t this interesting?Before  I tell  you how to hack the software and make it run in the trial mode  forever,  we have to understand the functioning of these softwares.I’ll  try to  explain this in brief.When these softwares are installed for the  first  time, they make an entry into the Windows Registry with the  details  such as Installed Date and Time, installed path etc.After  installation  every time you run the software, it compares the current  system date  and time with the installed date and time.So, with this it  can make out  whether the trial period is expired or not.So with this  being the  case, just manually changing the system date to an earlier  date will  not solve the problem.For this purpose there is a small Tool  known as  RunAsDate.Download Link :   http://www.nirsoft.net/utils/run_as_date.html RunAsDate is a small   utility that allows you to run a program in the date and time that you   specify. This utility doesn’t change the current system date, but it   only injects the date/time that you specify into the desired   application.RunAsDate intercepts the kernel API calls that returns the   current date and time (GetSystemTime, GetLocalTime,   GetSystemTimeAsFileTime), and replaces the current date/time with the   date/time that you specify.It works with Windows 2000, XP, 2003 and   Vista.NOTE: FOLLOW THESE TIPS CAREFULLYYou have to follow these tips   carefully to successfully hack a software and make it run in it’s trial   mode forever.1. Note down the date and time, when you install the   software for the first time.2. Once the trial period expires, you must   always run the software using RunAsDate.3. After the trial period is   expired, do not run the software(program) directly.If you run the   software directly even once, this hack may no longer work.4. It is   better and safe to inject the date of the last day in the trial period.
For example, if the trial period expires on jan 30 2009, always inject the date as jan 29 2009 in the RunAsDate.
Thats it
 
 
 
 How to Recover Unsaved Word documents
How many times you accidently hit the close button without saving your important word documents??? That's disaster,right?
But don't you know that microsoft word does a backup of your docs every 10 minutes ( unless you change this options)
So,here is the solution:
Word 03: You can head to C:\Documents and Settings\Username\Application Data\Microsoft\Word or C:\Documents and Settings\Username\Local Settings\Temp then change "Arrange icons by" to "Modified"   and open the lastest files,you will get what you (think you have)  lost.  (you will need to change folder options to show hidden files and   folders first)
In Word 07: It's easier if you are using word 07 because it will automatic recover your doc once you open it again.
 
 
 Hi, frnd ,have you heared about online operating system?
Ya,its here, go to this website with password n username given below.
http://www.oos.cc/login.html
With following :
username : sandy
password : hac_king.
Than u see 
an online operation  system like apple or so....There are  folders for all u can there upload  everything or u can make new  folderson the desktop .
Note : This page only works in firefox. So dont go via IE,OPERA. 
  
 
 
   
Do you like this story?
How  to connect two PCs by LAN (Ethernet).There  are many ways to connect two  PC's, but connecting them together by LAN  is the easiest and most cost  effective way. Plus, you can use this  method for any number of PC  ofcourse if you have...              
 
 For this ,What you need:
For this ,What you need:
1. 2 PCs with Ethernet Cards or Onboard Ethernet
Most new motherboards come with onboard Ethernet,
 you can check this out in 
My Computer > Properties > Hardware > Device Manager > 
Network Adapter.
2. A Crossover Ethernet cable.
The  normal Ethernet cables won’t work, you must have a cross crimped  Ethernet cable which can be used to transmit data in both directions.
3. A Ethernet Hub
A  Ethernet hub is needed if you plan to connect more than two PCs. If you  want to connect just two PCs, you can do it directly without a hub.
How to do it:
1. Connect the crossover Ethernet cable to the LAN (RJ45) ports of both the PCs.
PC - 1:
- Go to My Computer > Properties > Computer Name.
- Change the Computer Name to A and Workgroup name to ABC and click OK to save changes.
- Go to Control Panel > Network Connections.
- Right click on your LAN connection and select Properties.
- Select Internet Protocol (TCP/IP) > Properties.
- Enter these values:
IP Address - 192.168.0.1
Subnet Mask - 255.255.255.0
- Leave the other fields blank and click OK to save changes.
- Go to My Computer > Properties > Computer Name.
- Change the Computer Name to B and Workgroup name to ABC and click OK to save changes.
- Go to Control Panel > Network Connections.
- Right click on your LAN connection and select Properties.
- Select Internet Protocol (TCP/IP) > Properties.
- Enter these values:
IP Address - 192.168.0.2
Subnet Mask - 255.255.255.0
- Leave the other fields blank and click OK to save changes.
- - -
After   the connections and settings have been saved, both the PCs should be   connected by LAN. You may need to restart both the PCs.
You can check if the connection is working by pinging one PC from the other.
For PC-1, Start > Run > CMD > ping 192.168.0.2
For PC-2, Start > Run > CMD > ping 192.168.0.1
You can view the PC's in My Network Places. 
Also You can now use this LAN connection to play multiplayer games or share files. 
You can also map a drive on another PC to a local drive by using 
          My Computer > Tools > Map Network Drive > Select Drive Letter and network path of the shared folder on the other PC  
 
 
courtesy http://www.7terabyte.tk/