Our Feeds
Categories
Home
About
XploitZ
Vulnerability
Hacking
Shellcode
Buffer Overflow
Programming
CSS
C
CPP
Python
PHP
Java
HTML
Android
Video Tutorials
PlayStore*
Home
Visual c++
Windows
Windows Program to Find Screen Resolution
Wednesday, 29 May 2013
Ajith KP
Windows Program to Find Screen Resolution
Ajith KP
May 29, 2013
2 comments :
This is a simple source code to find
Screen Resolution
. It is coded in
Visual C++
& Compiled in
Visual Studio 2012
.
/* Coded By Ajith Kp [ fb/ajithkp560 ] */ #include
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR szCmdShow, int iCmdShow) { TCHAR buff[100]; int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); wsprintf(buff, TEXT("Screen Size: %ix%i"), x, y); MessageBox(NULL, buff, TEXT("Screen Size"), MB_ICONINFORMATION); return 0; }
Next
« Prev Post
Previous
Next Post »
2 comments
Write comments
Anonymous
AUTHOR
10 September 2013 at 21:30
delete
That's resolution ;-(
Reply
Ajith KP
AUTHOR
14 September 2013 at 02:54
delete
I'm very weak in English & Technical terms :p ;)
Reply
Popular Posts
Easiest way to convert RGB Color Image to Gray scale Image in Java
Hello GuyZ, I would like to share Java code to convert RGB images to Gray scale images. I have seen many Java codes which converts im...
Web Application Vulnerabilities: Dawn, Detection, Exploitation and Defence Slide Show
ABSTRACT Web applications are popular software application types in which the client runs the application stored in server in his/her we...
Histogram Equalization Algorithm and Implementation in Java
Histogram equalization is a technique used to enhance the contrast of image using the histogram of image. The histogram of image represents...
Fist GUI Program - FASM
I hope you have read the previous posts about FASM. Else please read it here: http://terminalcoders.blogspot.in/search/label...
Digital Camera Day or Night - Python Solution
"You need to construct a feature in a Digital Camera, which will auto-detect and suggest to the photographer whether the pi...
Beautiful Black-Green Theme for Hackers [GNOME/GTK/KALI LINUX]
If you like this theme download it from here: http://downloads.ziddu.com/download/24041123/HackerTheme.tar.gz.html ...
OpenGL: Line Drawing - DDA Algorithm
Hello GuYz, DDA algorithm is another popular line drawing algorithm. Source Code #include <gl/glut.h> #include <Wind...
Skin Detection Algorithm - Implementation in Java
Hi GuyZ,,, This is one of the partial solution of my Mini Project. This is an implementation of skin detection algorithm in Jav...
Buffer Overflow Tutorial: Socket Programs
Buffer Overflow is the vulnerability which make your system high risk. It allows unlimited access to the attacker, and allows inject shell...
Reverse IP Look up Tool in PHP
Reverse IP look up tool is very important for the hackers who need to hack servers and he can find vulnerable website from a lis...
..:: SUPPORT US ::..
Labels
Programming Language
Programming Languages Theory
Adv. Hacking
Hacking
Vulnerability
C++
ALOGORITHM
CPP
Java
C
Python
Linux
PHP
Shellcode
Buffer Overflow
JavaFX
x64
Android
Digital Image Processing
Graphics
Image Processing
Metasploit
OpenGL
AI
FASM
2 comments
Write commentsThat's resolution ;-(
ReplyI'm very weak in English & Technical terms :p ;)
Reply