|
-
July 21st, 2007, 02:22 PM
#1
Where Should I Start
I am really fascinated by C++, and really want to learn it completely. I already have a lot of experience with PHP, AS, Ajax (if you consider that a language) and a few others. I tried going to http://winprog.org but that tutorial was a bit fast for me. i also have 2 books, but they just teach they very basics, and all of the programs are console styled. Does anyone know of a very structured, solid place that will teach windows c++ programming? Thanks in advance
Last edited by tophat; July 21st, 2007 at 02:30 PM.
-
July 21st, 2007, 04:51 PM
#2
Re: Where Should I Start
There isn't much to understand about Windows C++ programming. The only thing to really understand, is that it is event driven. That means you handle window messages, which get passed to a 'callback' (that is a function pointer) that you provide to the OS when you register your window class.
So if you can understand that the code that handles painting, closing, moving, etc... is all handled when the message is passed to your callback by the operating system, and not in 'top down from beginning of program code', then you should be able to pick up any windows tutorial quickly.
The console applications books/tutorials teach you the basics of C/C++.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|