Friday, September 23, 2011

FIND NOKIA SECURITY CODE S60 V3 & 4 100% WORKING

Hello today I am going to teach you how to recover find security code for Nokia S60 v3 & 5

For this you will need
1. PC Suit
2. NSS (Download from here)
3. Data Cable

1. Download and install NSS from the link provided above.

During installation, it might ask you to select services, just select Virtual USB DEVICE

2..After installation, run NSS from desktop

3. Click on Scan for new device


4. Click on Phone Info


5. Now connect your Mobile using Data Cable and select PC Suit, As soon as you select PC Suit you have to press the Scan button, if you delay in pressing this button than you will receive an error






If everything goes fine than you should see something like this


6. Now from left side select your phone, it should have Imei written in information

7. Click on Permanent Memory (Located on Right bottom side)

8. Click on read

It will start reading the permanent memory file and will save a log file name your_imei.pm


x:\Program Files\NSS\Backup\pm\your_IMEI.pm
(path can vary depending where you installed NSS)

9. Now open this file using notepad


10. Now locate a line with the combination of alternate 3 and 000000 at the end in this file


As you can see on line 5

11. Remove all alternate 3, and 0's from end

and you will get 12345

12345 is my mobile security code. Thats all

If you still have any query about the whole procedure please comment.

Monday, September 12, 2011

HOW TO USE UPDATE STATEMENT SYNTAX IN SQL SERVER

The Update statement is use to update any column in a table

The syntax of update statement is

Update table_name
Set column_name ='value'
Where column_name='value'

Lets say we have a following table (table_1)


We want to change Asad raza's city from Lahore to Karachi, so for his the syntax would be

update table_1
set city='Karachi'
where firstname='asad'

so the output will be


We can also update multiple column at a same time

lets say we want to change city from Karachi to Islamabad for Muhammad Taqi & Muhammad Taqi

so for this the syntax would be

update table_1
set city='Islamabad'
where firstname='muhammad' or lastname='Taqi'

We can also use AND & OR Operator like in the above example we used OR operator

Note : If you use update statement without where clause than it will update all the record.

If you still have any confusion about update statement than please leave a comment.

Friday, September 2, 2011

PROGRAM TO GENERATE RANDOME NUMBER IN C/C++

This program can generate random number, from 0 to 6

CODING
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
#include<ctype.h>
#include<iomanip.h>
main()
{
srand(time(0));
clrscr();
        for (int count=1; count<=5; count++)
            {
            int a=rand() % 6;
            cout<<setw(5)<<a<<endl;
            }
getche();
return 0;
}

Thursday, September 1, 2011

cstdlib.h MISSING IN INCLUDE FOLDER TRY THIS C/C++

 Getting this error  ??



If want to use rand() or srand() function in your program and are unable to include <cstdlib.h> header file because the file is not in your include folder , than try to include <stdlib.h> in your program and it should work.

Thanks