Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~15.4K People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for William Hemsworth

MSDN says that GetMessage executed by an application executes the keyboard_hook. Replace the messagebox() by the following code: [CODE] MSG messages; while (GetMessage (&messages, NULL, 0, 0)) { /* Translate virtual-key messages into character messages */ TranslateMessage(&messages); /* Send message to WindowProcedure */ DispatchMessage(&messages); } [/CODE]

Member Avatar for Uchenna_1
0
9K
Member Avatar for Devoney

Hi all, I was looking for a piece of code to simply obtain the manufacturer of the CPU in your computer (might also be known under vendor ID). I found it difficult to obtain a code as basic as possible. I had already coded this once in Assembly language, still …

Member Avatar for zar19
0
3K
Member Avatar for Devoney

Hi all, Yesterday I ran into RDTSC, very useful to have knowledge of, especially when you are using performance counters and timers etc. RDTSC will return a value to you (64 bit) which contains the current clock cycle of your processor. I have made a little program which requests the …

Member Avatar for marco93
0
1K
Member Avatar for atrusmre

Don't look at the size of the sample code I provided you down here, otherwise I will scare you of maybe. Here is a sample of a program which [B]connects to a server by using sockets[/B] initialized with the [B]WSAStartup[/B] function. Use API32 reference of microsoft to understand what the …

Member Avatar for Devoney
0
2K