Now that I have getch() to work, I have yet another problem. BTW, thank you for answering these questions, I do ask a lot, only because I am eager to know, what is a board used for anyways
Ok, he's the problem...
#include iostream.h
#include conio.h
int main()
{
char movement;
movement = getch();
cout << movement;
if(movement == 8)
{
cout << "This is what happends when you press 8";
}
return 0;
}
So, it should print "This is what happends when you press 8", but it doesn't. I have no idea what it could be, because it looks as right as rain. Anyways, thanks for the help!
Mike