I have gone through 2 tutorial books on visual C++. I have written some java applets, coldfusion, html and plugins for Lightwave (Graphical design). I also have studied a great deal of MASM.
I am not all that familiar with MFC which is where I am having my problems. I was unaware that controls intercept key strokes. Which is why in my previous post I couldn't get the keydown to work. What do I mean by controls? I have 3 static text windows on the opening window. Each one I added a control and a string member variable to allow me to change the font size and type as well as what each window displays textwise.
I found on MS's website how to trap the WM_KEYDOWN event. But it is for dialog boxes and when I integrated (or tried to integrate) the steps into my application it complained because it was a View class and not a Dialog class, and I know all windows can be thought of as dialog boxes. I just need to examine the code more to see where I really need to change it.
So right now, the only road block I have is trying to grab the WM_KEYDOWN event. But I am considering just redesigning the application and using button driven prompts, since like I stated in my previous post, it is just for testing purposes. When I am finished, there will be no keyboard or mouse input for it.