PC shortcuts keys


DEAR PC USERS......

FOR COPYING AND PASTING A DOCUMENT, ARE YOU STILL USING YOUR MOUSE , THEN YOU GUYS MUST DEFINITELY GO THROUGH THIS BLOG... HERE ARE SOME FABULUS TIPS OR SHORTCUTS FOR SAVING YOUR TIME AS WELL AS INCREASING YOUR EFFICIENCY...............

Shortcut Keys:

ctrl+A Select All
ctrl+B Bold
ctrl+C Copy
ctrl+D Fill Down
ctrl+F Find
ctrl+G Go to
ctrl+H Replace
ctrl+I Italic
ctrl+K Insert Hyperlink
ctrl+N New Workbook
ctrl+O Open
ctrl+P Print
ctrl+R Fill Right
ctrl+S Save
ctrl+U Underline
ctrl+V Paste
ctrl+W Close
ctrl+X Cut
ctrl+Y Repeat
ctrl+Z Undo

Save any webpage as pdf


most of us want to save our webpage easily with a nice format.
most of them use "save page as" option.
but that saved page doesn't open without a browser & hense causing an exam for our passion.
today I m gonna save you from this.

First go to here
You'll see a page like this:

Now click on "pdf button", another page will come:
click to see larger view
Now follow the steps as shown in the picture.
step 1 (marked by red on picture)
step 2 (marked by yellow on picture)
step 3 (marked by black on picture)

After these steps drag the [save as pdf] button with your mouse and place it on to your booksmark toolbar of the browser.
DONE!!!

now when you want to save any page as pdf. just click on the button on toolbar.
see magic...:)

ADD snow effect on blogger mouse cursor area


Blogger Widgets

at first go to blogger.com
select your blog and click on design
then add new gadget (old blogger interface)
or select add new widget (new blogger interface)
then select HTML widget and paste the following codes:

<a href="http://freedownloadzforall.blogspot.com" target="_blank" title="Blogger Widgets"><img src="http://safir85.ucoz.com/24work-blogspot/cursor-24work-10.png" border="0" alt="Blogger Widgets" style="position:absolute; top: 0px; right: 0px;" /></a><script type="text/javascript">
// <![CDATA[
var colour="white";
var sparkles=100;


var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";


star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}


}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {




tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

you can change the white color by your desired color.
then save it.
when anyone will hover the mouse on this widget, will see a snow falling
from the mouse cursor...
Get fun.... :)

Desktop Facebook Messenger For Windows Seven


Facebook has now released a new official version of facebook messenger for your desktop.
This software is with the following feature:

1. Chat without any browser
2. live facebook without any browser
3. search for your friends in the chatbox
4. all notifications in the desktop
5. all messages in the desktop
6. all friend requests in the desktop
7. use this messenger as a gadget in desktop
 
How to install:
1. go to this link, login & click install
2. run the setup file
3. set up file will start to be downloaded directly,
   internet must have to be connected
4. after the installation log in your fb account
5. you can log out by using the tray icon of this gadget in
   the lower corner of desktop
6. you can keep this as a desktop gadget by selecting
   "Dock to right" option

Drawbacks of this software:
1. no video calling or group chatting
2. only works in windows seven

Make Your Own Auto Shut Down Software


This notepad trick is done by simply using the notepad of your computer.
  • At first open the notepad on your computer.
  • [Start>All Programmes>Accessories>Notpad
  • or go to "run". Type "notepad" & press "enter"
  • Now copy & paste the following codes:


@echo off
title Auto Shutdown Timer
color 0b
cls
echo _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
echo CCR’s Auto Shutdown (Version 2.03)
echo Designed by Moshiur Tanim
echo freedownloadzforall.blogspot.com  
echo —————————–
echo.
echo Enter your desired remaining time to turn off your computer. Enter time only in minutes. For example, If you plan to turn off your computer after 1 hour, type 60 and press ENTER
echo.
echo ******************************
echo Your desired time should be 0 to 5256000 minutes(10 years)
echo ******************************
echo.
set /p uT=Remaining time to shutdown (in minutes):
set /a aT=%uT%*60
shutdown /s /f /t %aT%
msg * Your computer will turned off after %uT% minutes (%aT% seconds)!!
exit


  • Now select "save as" and "all files".
  • give filename as "Auto Shutdown Software.bat" or (anything else).bat
  • Save it to anywhere.


Now open the file, run it & follow the procedures.

--------------------------------------------------------------------------------------

*You have made your own auto shut down software, (let you've made it for 30 minutes)
Now what you've run this software and the computer is to be shut down before 30 minutes.
But suddenly you've decided not to shut down right at that time.
For this purpose we are making our own cancel shutdown software.

To do this:
  • open the notepad.
  • copy paste following codes and save as: "Cancel Auto Shutdown.bat"


@echo off
title Auto Shutdown Timer
color 0b
cls
echo _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
echo CCR’s Auto Shutdown (Version 2.03)
echo Designed by Moshiur Tanim
echo Freedownloadsforall.blogspot.com
echo —————————-
echo.
echo If you want to cancel any scheduled shutdown type Y and press ENTER
echo.
echo.
set /p ans=Do you want to cancel sceduled shutdown? (Y/N):
if %ans%==Y goto process
if %ans%==y goto process
if %ans%==YES goto process
if %ans%==yes goto process
if %ans%==Yes goto process
exit
:process
shutdown /a
msg * Your scheduled shutdown has been canceled. Thankyou for Using CCR’s Auto Shutdown. Click [OK] to continue!!
exit


N.B- use this software for cancelling your scheduled turn off.
     [This procedure works in any version of your windows]

Get fun.  :)
Take care all.

Download Free Movies

50 JAVA MOBILE GAMES FREE!


Here are 50 popular java games for you mobile phone:

picture
Download Here
Game List:

3D Rally V 1.0
4×4 Extreme Rally 2006
A2 Race World Challenge V 1.0.5
Absolute Minesweeper
Aces Taxas Hold’em
Action Neng
Adventure Boy
Age of Heroes 3
Allods-Rage of Mazes
Alpha Wing 2
Alpha Wing EX
Alphaman
Ancient Empires
Ancient Empires V 1.0.3
Anno 1503 V 1.0.1
ArcadePark2
AssaultIron
Brutal Fighting V 1.0
Burning Tires
C2S AgassiTennis
Call of Duty v 1
Carribbean Missile Criss Ver 1.0
CarRacer v 1.09.1
Catapults S60
Championship  Manager V 1.42
ChessMaster v 1.04
Chica Interviu Valencia v 1.0
Chopper Rescue V 1.0.7
Christmas Block Breaker v 1.02
Cloud Commander
Cocoto Kart Racing V 1.0
Colin McRae Rally V 1.0
ATHnolimit
Backgammon
Balloney
BanditoGangsterito Nokia 176×208
Beach Ping Pong
Bear Cards V 1.0.1
Ben Chase V 1.0
BeyBlade G-Revolution V 1.2
Biliardo 3D v 1.2
Billy the Kid-Wanted
Bimmer Street Racing V 1.0
Black Hawk Down Team Sabre
Blitkrieg 2
Bomb Jack V 1.1.6
Bomberman 3D
Bounce Back
Bring ‘em Back V 1.0

Folder Lock V7


This software is one of the best software for locking and hiding your secret folder v 7.0.6.
The price is 39.95$. But you can download free from here.
Download Here
(password:  8801673629567)

Review of Folder Lock sofware:

             hide or lock any files or folders on your drive
             hide or lock any folder on your pendrive
             make any portable locker
             protect usb, encrypt, backup & make wallets on any location on your drive


Folder Lock
 
How to lock pendrive:
             first make a locker from 'Encrypt Files'
             Then select protect USB and lock your pendrive

N.B: You can open your pendrive in any other computer where 'folder lock' is not installed

Have fun...

Make your genuine windows version


At first copy the codes below
Open "notepad" and paste the codes
Now save it as: TPGenuine.reg
Now run the TPGenuine.reg.

code:

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion]
“CurrentBuild”=”1.511.1 () (Obsolete data – do not use)”
“ProductId”=”55274-640-1011873-23081″
“DigitalProductId”=hex:a4,00,00,00,03,00,00,00,35,35,32,37,34,2d,36,34,30,2d,\
31,30,31,31,38,37,33,2d,32,33,30,38,31,00,2e,00,00,00,41,32,32,2d,30,30,30,\
30,31,00,00,00,00,00,00,00,86,56,4e,4c,21,1b,2b,6a,a3,78,8e,8f,98,5c,00,00,\
00,00,00,00,dd,da,47,41,cc,6b,06,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,38,31,30,32,36,00,00,00,00,00,00,00,b5,16,\
00,00,83,83,1f,38,f8,01,00,00,f5,1c,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,66,e5,70,f3
“LicenseInfo”=hex:33,b7,21,c1,e5,e7,cd,4b,fd,7c,c6,35,51,fd,52,57,17,86,3e,18,\
d3,f4,8c,8e,35,32,7b,d1,43,8d,61,38,60,a4,ca,55,c9,9a,35,17,46,7a,4f,91,fc,\
4a,d9,db,64,5c,c4,e2,0f,34,f3,ea
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents]
“OOBETimer”=hex:ff,d5,71,d6,8b,6a,8d,6f,d5,33,93,fd


Now go to these following links:

http://www.microsoft.com/genuine/validate/
http://www.microsoft.com/genuine/downloads/FAQ.aspx

click on "validate widows" button

Have fun  :)

MAKE OWN PORTABLE APPS


Applications that only use files in their folder are naturally portable, but most of them use registry, files and folders on host computer (local).

Prepare portable
Get program files

First of all you have to extract files from setup with a program such as Universal Extractor and if you can't you have to install. In this case monitor setup with Total Uninstall (doing so you will be able to clean your computer and know what need program).
The simpliest example is CCleaner, download portable and unzip in CCleanerPortable\App\CCleaner (you can create these 3 folders at one time with Total Commander).
-------------------------------------------------------------------------------------------------------
Monitor running and/or setup

Launch Total Uninstall, click Install, Browse to CCleanerPortable\App\CCleaner\CCleaner.exe
Click on Next to Build A New Snapshot
Click on Next to Launch setup application Now
CCleaner launch in english. Look in Options-Advanced that Save all settings to INI file can't be uncheck (due to portable.dat file). Choose your language in Options-Settings and close CCleaner.
Click Next in Total Uninstall to Make the post install snapshot and find the changes. Click Close to view changes:






There is no change! CCleaner is naturally portable.
----------------------------------------------------------------------------------------------------
Prepare launcher

In this case launcher is useless but it can do some settings and move them in Data.
If there is no portable.dat file in its folder, CCleaner use ini file only if found in its folder. Otherwise, use registry HKEY_CURRENT_USER\Software\Piriform.
A good thing is to force use ini creating portable.dat, another is to move ini file in Data to keep settings when update.
Launcher can also write in CCleaner.ini to fix some settings:
-------------------------------------------------------------
[Options]
Language=1036
BackupDir=L:\PortableApps\CCleanerPortable\Backups
------------------------------------------------------------
1036 is the decimal id of french and can be returned by GetUserDefaultLangID of kernel32, we will use it to fix automatically language.

Launch app
Launcher is a small exe in *Portable folder compiled with NSIS. Download and install NSIS.
----------------------------------------------------------------------------------------------------
Minimal launcher

Copy-paste the script below in Notepad++ and save as CCleanerPortable.nsi in CCleanerPortable folder.
Right-click and Compile NSIS Script, it will create a some tens of kB executable :
-----------------------------------------------------------
WindowIcon Off
SilentInstall Silent
AutoCloseWindow True
OutFile CCleanerPortable.exe

Section
ExecWait "$EXEDIR\App\CCleaner\CCleaner.exe"
SectionEnd
----------------------------------------------------------


  • launcher don't display icon
  • launcher don't display screen output
  • launcher automatically close when completed
  • launcher name will be CCleanerPortable.exe


Code executed must be in Section: Execute CCleaner.exe and wait to quit ($EXEDIR is the path of the launcher)
----------------------------------------------------------------------------------------------------
Structured launcher

Download and extract CCleanerPortableSources in your CCleanerPortable folder.
Open in Notepad++ CCleanerPortable_1.nsi.
To use always the same parts of scrpit we use constants and we use functions called in main section to have a clear structure of running.
Lines begining with semicolons are commented and not compiled.
Read comments and search in NSIS help to understand.
------------------------------------------------------------------------------------------------------
Complete launcher

Open in Notepad++ CCleanerPortable_2.nsi.
Added: version info, securities before starting, customization, splash and passing receipts parameters.
You will need FindProcDLL plug-in: download and install Optimized by size binaries.
-----------------------------------------------------------------------------------------------------
Final launcher

Open in Notepad++ CCleanerPortable_3.nsi.
Same script than 2, but common parts with all launchers are moved to PortableApp.nsh called with !include.
-----------------------------------------------------------------------------------------------------
Backup and restore registry keys
Registry plug-in

You will need this NSIS plug-in for registry to compile.
Download, extract and Install (in Desktop): it will copy Registry.dll in Plugins and Registry.nsh in Include.