Forum: C++ Jun 13th, 2007 |
| Replies: 4 Views: 1,032 Somebody has to know how to do this, help please :) |
Forum: C++ Jun 11th, 2007 |
| Replies: 4 Views: 1,032 Come on guys I need some help please. |
Forum: C++ Jun 9th, 2007 |
| Replies: 4 Views: 1,032 I should have mentioned that I already have the basic take user's input and display stuff working thats why I wanted to upgrade to the key press stuff.
#include <iostream>
using namespace std;... |
Forum: C++ Jun 9th, 2007 |
| Replies: 4 Views: 1,032 Okay I had a thread on this already but it was under my friend's account and when I replied to it under my own account nobody knew what was going on and nobody responded after that so thats why I'm... |
Forum: C++ Jun 6th, 2007 |
| Replies: 3 Views: 1,043 #include <iostream>
#include <iomanip>
#include <climits>
#include <windows.h>
using namespace std;
int main()
{
int TPP = 0;
for ( ; ; ) {
if ( GetAsyncKeyState ( VK_ESCAPE ) != 0... |