www.flickr.com

Adobe Photoshop Lightroom 3.2 REAL CD serial keys

Thursday, November 3, 2011 Posted by Glenn 9 comments

You don't have to download cracks from fake websites on the internet, just copy one of these serial keys and then paste on your LR Installer.
If your Lightroom is version 2.2, then you should go here. CLICK HERE.



1160-4619-1417-8842-6759-2138

1160-4723-6958-7923-6859-1510

1160-4609-3626-9982-2935-8664

1160-4601-9792-2555-6085-0047

1160-4240-4495-6746-8069-4609

1160-4923-0464-9984-3996-3745

1160-4186-2901-3414-2501-5012

1160-4930-4699-9173-5530-8637



-glenn

Sharing is so Easy:
StumpleUpon DiggIt! Del.icio.us Blinklist Yahoo Furl Technorati Simpy Spurl Reddit Google Twitter FaceBook

Labels: , ,

Color funtion in Visual C++ and other non-Turbo C Compilers

Monday, October 31, 2011 Posted by Glenn 0 comments

In Turbo C and Turbo C++, there are so many functions (colors, gotoxy and etc...) that you can't find in devC++ and other non Turbo Compilers. However, you can make your own function. Here:

For Colors:


void setcolor(unsigned short color)
{
HANDLE hcon = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hcon,color);
}




Note that you should include a windows header in your source codes. By the way, you can use the system function, sorry I can't recall the codes but the codes above is much better because you can also change the background color of your program.

Sharing is so Easy:
StumpleUpon DiggIt! Del.icio.us Blinklist Yahoo Furl Technorati Simpy Spurl Reddit Google Twitter FaceBook

Labels: ,

gotoxy function in Visual C++ and Non-Turbo C Compilers

Posted by Glenn 4 comments

Here is my function:

Gotoxy function is really essential in designing your programs. So use it well!



void gotoxy(int x, int y) //for gotoxy--> gotoxy(x,y)
{
HANDLE hConsoleOutput;
COORD dwCursorPosition;
cout.flush();
dwCursorPosition.X = x;
dwCursorPosition.Y = y;
hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hConsoleOutput,dwCursorPosition);
}

Sharing is so Easy:
StumpleUpon DiggIt! Del.icio.us Blinklist Yahoo Furl Technorati Simpy Spurl Reddit Google Twitter FaceBook

Labels: ,