Tuesday, November 30, 2010

Trace a Gmail Email Account

When Gmail first threw its hat into the email ring a few years ago, its service was open only to those who had received an invitation. Now, however, it's free and has exploded into one of the most popular email services available - thanks to Google's trusted brand name, its simplicity, the huge amount of storage space available for absolutely free, extra features (such as POP3 access), embedded web and video chat, and so many more! Is it any question, then, that millions of people are already using Gmail - even though it's a relative newcomer on the email scene?


And though Gmail's spam filters are among the best available, there is a chance that, at some point, you'll receive unwanted email - and it might even be from a Gmail address. In such an instance, your best bet is to use Gmail's own reverse email search; it's easier for Gmail, after all, to search its own records than to have an outside source looking in. See what you're able to discover about the sender. (Gmail is especially attractive to those wishing to remain very much anonymous, because the headers in any given piece of mail are stripped of any and all IP information. Thus, the stalker or hacker believes himself or herself to be secure.)

Even if you don't have much luck, or any at all, you are far from out of options. In fact, now would be a good time to check out one of the many free independent reverse email search engines available online. When using these sites, the key is to remain tenacious - because it may take a good while before you produce results. Giving up is the last thing that you want to do; after all, even if the reverse email search engine you are using isn't having any success at all, bear in mind that there are those services which, for whatever reason (and there exist a few possibilities), have more success than others!

If you are still having little to no success, or if the email received was of a particular harmful or malicious nature, you might want to consider contacting a third party for some needed extra help. I am referring to professional investigators who specialize in online matters, since they have tools at their disposal not necessarily available to you. Every step taken online leaves a 'footprint' - data that can be tracked and which will inevitably lead to the person who has been taking the steps all along. This is true even if the person in question is using dial-up or a handful of proxies; while these factors could slow down a search, they are never able to stop a search in its tracks altogether!

Private investigators often have access to what is known as the "deep web" - information not available through conventional means such as, say, a simple Google search. So always remember that the only way to ensure your subject gets away is for you to run out of steam and simply give up. Otherwise, you should inevitably be able to find the information that you are looking for! Best of luck!

How to open office 2007 files into Office 2003

Today tip will help you to resolve the compatibility issues between the Office 2003 and Office 2007. Because all programs in office 2003 used the old file extensions for its different programs.  For example Word 2003 saved files with extension .doc, Excel 2003 with .xls and PowerPoint with .ppt. but on the other office 2007 used the new file extensions for its different programs.  For example Word 2007 saved files with extension .docx, Excel 2007 with .xlsx and PowerPoint with .pptx. Now the problem is that when you will try to open office 2007 files into office 2003 and you will not open the file due to compatibility issues between both office versions.  Microsoft provides a free compatibility pack to convert office 2007 documents to the office 2003 format. There are many third party free converter are available but here we are using Microsoft office compatibility pack.
Follow the given steps to download free Microsoft compatibility pack and install it.
To use this feature, you will need to be logged into your computer with administrative rights.
Visit the following link to download the Microsoft compatibility pack:

How to access the sharing data offline.

Access the shared data offline allows you to keep using your shared files, folders and software programs when disconnected from the data server. When you reconnect to your data server, all files will be synchronized to the files on the network.  
There are two types of configurations required to set the access shared folders offline available, one for data server and other for client computer. 
Configuration on Data Server.

First locate the folders that you would like to share or make new folders then share these folders so they can be accessible to any one on the network.
Now right click on that folder and click on the option "Sharing and security".
A small dialog box will appear with the title "data properties". Under the "Sharing" tab, select the check box "Share this folder on the network" under the "Network sharing and security".
Now set the share level permissions that you want to give the users on every folder. Enable cache of share folders by click on cache button (by default it will be enabled).

Configuration on Client Computer 
On the client computer, first open My Computer then click on Tools.

In Tools menu bar, click on Folder Options, a window will appear with the title Folder Options.
Under the Offline File tab, check the option Enable Offline File. Here you can choose the synchronization process "Synchronize all offline files when logging on", "Synchronize all offline files before logging off" and others.

Click on Apply button to save the settings and then Ok button to close this window.
Now sitting on the client computer, try to access the shared folder from the data server.
First Right click on the shared folder and Click on Make available offline.
To synchronizing the offline work from client computer to data server, again open My Computer then click on Tools. Click on Synchronize then click on synchronizing button. 
After that down to data server and then try to access share folders by give the UNC (Universal Naming Convention) path of data server. But it will be accessible weather the server is down or up

Sunday, October 3, 2010

write a program to accept temperature in centigrade degree and convert it into Fahrenheit degrees..

#include
#include
void main()
{
int b,d,e;
float c,f;

clrscr();
printf("\n\t Enter the temperature\t:\t");
scanf("%f",&f);
b=5;
d=9;
e=32;
c=b*(f-e)/d;
printf("\n\t Fahrenheit degree\t:\t%0.2f C",c);
getch();
}

write a program to accept a number from user and print its square and cube.

#include
#include
#include
void main()
{
int a,b,c;
clrscr();
printf("\n\t Enter the value of square and cube\t:\t");
scanf("%d",&a);
b=pow(a,2);
c=pow(a,3);
printf("\n\t\t\t\tsquare\t\t:\t%d\n\n\t\t\t\t cube\t\t:\t%d",b,c);
getch();
}

write a program to accept the selling price form user whether the seller has made profit or incurred loss. also determine how much profit he made or loss he incurred

#include
#include
void main()
{
float cp,sp,p,l;// cp=cost price,sp=seller price, p=profit,l=loss

clrscr();
printf("Enter cost price\t:\t");
scanf("%f",&cp);
printf("Enter cost selling price\t:\t ");
scanf("%f",&sp);
p=sp-cp;
l=cp-sp;
if(p>0)
printf("The seller has made a profit of Rs.%.2f",p);
if(l>0)
printf("The seller is in loss by Rs.%.2f",l);

getch();
}

write a program for Employee salary and calculate it with only hra and ta with basic salary of employee in c.

#include
#include

void main ()
{
long int sal,hra,ta,ts;
clrscr ();
printf ("Enter Salary: ");
scanf("%ld",&sal);
if (sal>=5000)
{
hra=sal*.10;
ta=sal*.07;
}
else
{
hra=sal*.08;
ta=sal*.05;
}
ts=sal+hra+ta;
printf ("\n\nTotal Salary is Rs.%ld", ts);
getch ();
}

write a program for Employee salary and calculate it with all step in c.

 #include
#include

void main()
{

/* id=employee id,b_sal=employee basic salary,hra=basic*0.30%,
da=basic*0.50%,ta=hra+da*0.50%,other=500,pf=(basic+hra)*5%,pt=(basic+hra)*2% */

int id;
int hra,da,ta,others,pf,pt;
int net_sal,sal;
clrscr();
printf("\n\t Enter the Employee id\t:\t");
scanf("%d",&id);
printf("\n\t Enter the Basic salary\t:\t");
scanf("%d",&sal);
hra=sal*0.30/100;
da=sal*0.30/100;
ta=da+hra*0.50/100;
others=500;
pf=(sal+hra)*5/100;
pt=(sal+hra)*2/100;
net_sal=(sal+hra+da+ta+others)-(pf+pt);
printf("\n\t Net salary=%d",net_sal);
getch();
}

write a program to accept two number and find the remainder on dividing them

#include
#include
void main()
{
int a,b,c;
clrscr();
printf("\n\t Enter the  any two number\t:\t");
scanf("%d%d",&a,&b);
// equation of remainder in c-convertion


c=a%b;
printf("\n\t the remainder on dividing them\t:\t%d",c);
getch();
}

write a program for accept the number from user and find is number are prime or not ?

 #include
#include

void main()
{
int n,a,c=0;
clrscr();
printf("Enter number to be checked\n");
scanf("%d",&n);
for(a=2;a
{
if(n%a==0)
c++;
}
if(c>0)
printf("Not a prime number\n");
else printf("Prime number\n");
getch();
}

write a program for accept the number from user and find witch number are odd and even ?

#include
#include

void main()
{
int a,b;
int c,d;
clrscr();
printf("\n\t Its a Odd number");
for(a=1;a<=25;a+=2)
printf("%d\n",a);
printf("\n\t Its a Even number");
c=25;
for(d=2;d
{
printf("%d\n",d);
}
getch();
}

write a program for accept the number form user and print this Addition,Division,Subtraction,Multiplication,Modulus i?

 #include
#include
void main()
{
int a, b, c, d, e, f, g;
clrscr();
printf("\n\t Enter any number\t\t:\t");
scanf("%d",&a);
printf ("\n\t Enter any number\t\t:\t");
scanf("%d",&b);
c=a+b;
printf ("\n\n\t The Adition is\t\t\t:\t%d",c);
d=a-b;
printf ("\n\n\t The subtraction is\t\t:\t%d",d);
e=a*b;
printf ("\n\n\t The Multiplication is\t\t:\t%d", e);
f=a/b;
printf ("\n\n\t The Division is\t\t:\t%d",f);
g=a%b;
printf ("\n\n\t The modulus is\t\t\t:\t%d",g);
getch();
}

write a program to using arithmetic operator in c?

#include
#include
void main()
{
int a;
clrscr();
printf("\n\t Enter the Value of A\t:\t");
scanf("%d",&a);
printf("\n\n\t Value of A is\t\t:\t%d",a);
printf("\n\n\t Value of A is\t\t:\t%d",++a);
printf("\n\n\t Value of A is\t\t:\t%d",a++);
printf("\n\n\t Value of A is\t\t:\t%d",a);
printf("\n\n\t Value of A is\t\t:\t%d",--a);
printf("\n\n\t Value of A is\t\t:\t%d",a--);
printf("\n\n\t Value of A is\t\t:\t%d",a);
getch();
}

write a program to accept the year form user to determine whether the year is a leap year or not ?

 #include
#include
void main()
{
int year;
clrscr();
printf("\n\t Enter the year \t:\t");
scanf("%d",&year);

if(year%4==0)
printf("\n\t%d its a leep year",year);
else
printf("\n\t%d its aa not a leep year",year);

getch();
}

how will you convert a hexadecimal ABC into its octal and decimal equivalent ?

 #include
#include
void main()
{
int a,b,c;
int h=16,i=8,j=10;
long e,f,g;
long m,n,o,p;// modulas
long u,v,x,y,z;//dividing

clrscr();
printf("\n\t The Hexadecimal Value is\t:\tABC");
a=10;
b=11;
c=12;
e=a+(b*h)+(c*h*h);

printf("\n\n\t the decimal value is\t\t:\t%ld",e);
f=e/i;
m=e%i;
n=f/i;
u=f%i;
x=u/i;
o=u%i;
printf("\n\n\t The Octal value is\t\t:\t%d%d%d",m,u,o);



getch();
}

write a program to accept the any two number and Mach its witch number is getter and less in one ?

 

void main()
{
     int a,b,c,d;
     clrscr();
     printf("\n\t Enter the Value of A\t:\t");
     scanf("%d",&a);
     printf("\n\t Enter the Value of B\t:\t");
     scanf("%d",&b);
     c=a-b;
     d=c+abs(c);      // to check if the difference is negative or not
     if(d==0)
     printf("\n\t\t\t\t * Answer *");
     printf("\n\t A is smaller than B");
     else
     printf("\n\t A is bigger than B");
     getch();
}

write a program to accept the any two number and Mach its witch number is getter and less in one ?

#include
#include
void main()
{
int a,b,c;
int d,e;
clrscr();
printf("\n\t  Enter tha Number A\t:\t");
scanf("%d",&a);
printf("\n\t  Enter the Number B\t:\t");
scanf("%d",&b);
c=a+b;
d=ab;
e=c+d;
if (c==0) printf("\n\t A is equal to B");
else if(e==0) printf("\n\t A is smaller then B");
else printf("\n\t A is bigger the B");
printf("%d",d);


getch();
}

write a programing to accept the number of days and calculate the number of months they make in c?

#include
#include
void main()
{
int days;
int month;
clrscr();
printf("\n\t Enter the days\t:\t");
scanf("%d",&days);
month=days/30;
days=days%30;
printf("\n\a\a\a\t\tmonth\t:\t%d\n\t\tdays\t:\t%d",month,days);

getch();

}

write a programing to accept the cost of Qty to the user and print with Tex ?


#include
#include
void main()
{

float cost,tax,luxury,total;
clrscr();
luxury=0.0;
printf("\n\tEnter the cost of the item\t:\t");
scanf("%f", &cost);
tax=cost*0.06;
if(cost>40000.0)
luxury=cost*0.005;
total=cost+tax+luxury;
printf("\n\t the total cost is \t\t:\t%0.2f",total);
getch();

}

write a program for AND Operator to getting the your % in c-programing ?

#include
#include


void main()
{
int a,b,c,d,e,f;
clrscr();
printf("\n\t Enter the marks of 1st subject\t\t:\t");
scanf("%d",&a);
printf("\n\t Enter the marks of 2nd  subject\t:\t");
scanf("%d",&b);
printf("\n\t Enter the marks of 3rd  subject\t:\t");
scanf("%d",&c);
printf("\n\t Enter the marks of 4th subject\t\t:\t");
scanf("%d",&d);
printf("\n\t Enter the marks of 5th subject\t\t:\t");
scanf("%d",&e);


f=(a+b+c+d+e)/5;


if(f>=60)
printf("\n\t\t\t Your are pass\n\n\t\t First Division\t\t:\t%d",f);
if((f>=50)&&(f<60))
printf("\n\t\t\t Your are pass\n\n\t\t Second Division\t\t:\t%d",f);
if((f>40)&&(f<50))
printf("\n\t\t\t Your are pass\n\n\t\t Third Division\t\t:\%dt",f);
if(f<40)
printf("\n\t\t\t Your are fail\n\n\t\t Fourth Division\t\t:\t%d",f);


getch();
}

write a program for AND Operator using C programing ?

#include
#include
void main()
{
int a;
clrscr();
printf("\n\t Enter the any number less than 10\t:\t");
scanf("%d",&a);
if(a<=10)
printf("\n\t\t You are a good student");
if(a>=10)
printf("\n\t\t You are a very bad student");


printf("\n\n\t Enter the any number less than 10\t:\t");
scanf("%d",&a);
if(a<=10)
printf("\n\t\t You are a good student");
if(a>=10)
printf("\n\t\t You are a very bad student");
getch();
}

its magic for your

#include
#include
void main()
{
long a,b,c;
long g,e;
clrscr();
printf("\n\t Enter the your age\t:\t");
scanf("%ld",&a);
b=259;
c=39;
g=a*b;
e=g*c;
printf("\n\tIts magic for you\t\t:\t%ld",e);
getch();
}

Tuesday, September 14, 2010

hwo to write program for Employment salary service in c-programing ?

#include
#include

void main()
{

/* id=employee id,b_sal=employee basic salary,hra=basic*0.30%,
da=basic*0.50%,ta=hra+da*0.50%,other=500,pf=(basic+hra)*5%,pt=(basic+hra)*2% */

int id;
int hra,da,ta,others,pf,pt;
int net_sal,sal;
clrscr();
printf("\n\t Enter the Employee id\t:\t");
scanf("%d",&id);
printf("\n\t Enter the Basic salary\t:\t");
scanf("%d",&sal);
hra=sal*0.30/100;
da=sal*0.30/100;
ta=da+hra*0.50/100;
others=500;
pf=(sal+hra)*5/100;
pt=(sal+hra)*2/100;
net_sal=(sal+hra+da+ta+others)-(pf+pt);
printf("\n\t Net salary=%d",net_sal);
getch();
}

hwo to write program for Arithmetic Opreatoer in c-programing ?

#include
#include
void main()
{
int a, b, c, d, e, f, g;
clrscr();
printf("\n\t Enter any number\t\t:\t");
scanf("%d",&a);
printf ("\n\t Enter any number\t\t:\t");
scanf("%d",&b);
c=a+b;
printf ("\n\n\t The Adition is\t\t\t:\t%d",c);
d=a-b;
printf ("\n\n\t The subtraction is\t\t:\t%d",d);
e=a*b;
printf ("\n\n\t The Mtiplication is\t\t:\t%d", e);
f=a/b;
printf ("\n\n\t The Dision is\t\t:\t%d",f);
g=a%b;
printf ("\n\n\t The modulus is\t\t\t:\t%d",g);
getch();
}