One link is not going to show you how to do this. I have never implemented anything this large and since I have been looking for a new project i might just try my hand at this as well.
...
If I remember correctly from the movie, there was a subtle difference in what their program did. The letters given to their program were not used more than once unless they were entered more than...
Well using Win32 API your window will receive WM_LBUTTONDOWN and WM_LBUTTONUP messages. If the user clicks and drags then these two messages will have different coords. You could write a custom...
Yes. The only way your program can get out of that loop is by changing correctchoice to something other than zero(you could also use bool here). So you should only allow your program to change...
In this case you can think of the 'else' as your Error Handling code. This is what will happen if the user inputs a bad value. Typically I would not ask for the user input again in the else...
Yes, there is an application level service that responds to ICMP Echo Requests. Here is another good reference that will introduce RFC 1122, which states all hosts MUST offer this service.
Specifically, you send an ICMP Echo Request and wait for an ICMP Echo Response. RFC 792 outlines ICMP. You will see that there are many types of ICMP messages.
If you can exit your application correctly from just one of the windows procedures then add the case to that and do your work there. I don't see why you wouldn't be able to exit the app from your...
There is some great information here. It is tough to get through at first because there is a lot of jargon. But once you start to learn the terms it makes sense.