Xombie, as you are that in PB I do think youll get fast into the c/c++ specifics. The most annoying issue to me is the casting in C/C++ (well at least to me as a spoiled PB user).
After that youll see that (at least on Windows) the most (to me) complicated stuff is getting into the wide area of the Windows API.
Thats why I do mix both worlds and use some c/c++ codes compiled as lib in my PB projects. -> bastard coding
Remember that libavcodec thing?
Its a pain to translate all the headers into PB and even if it wouldn't be a pain you would have to correct those translated PB headers almost every month as such projects are heavy under development. Thats why a C written static lib out of a wrapper code would be senseful, .. just as an example.
I had a look at much sources which do fit my interest and recognised how the ball gets rollin'. Well ... same thing how I got into PB
BTW: As VisulStudio Express 2005 c++ doesnt got a ressources editor you could have a look at these:
http://smorgasbordet.com/pellesc/
http://www.resource-builder.com/
http://www.radasm.com/
http://www.parinyasoft.com/
Also if using VS2005 Express do look at this link:
http://www.codeproject.com/cpp/vcredists_x86.asp
And as you come from the Croissant side of the world this area might be interesting for you:
http://www.cppfrance.com/
PS: I heared from many people in c++ Threads that they still do stick using the older free M$VisualToolkitC++2003 in combination with code::blocks instead of upgrading to VS2005Express.
I also do prefer the M$ compiler but many C sources are GCC based and need to be compiled using MinGW/GCC like when using DevC++.
The more advanced IDE WxDevC++ does com with a WxWidgets integration but still stands behind all the options you can enjoy from the VS2005 IDE.
Also its interesting how People in C++ Threads do comment on MFC. Many do say that its already "historic" and someone should use WxWidgets or something similair. Well I dont have any opinion on this as Im also right now getting into it. Till now I do straight use the WinAPI.
I still do have VC6 so MFC could be an option, but VS2005 Express doesnt come with MFC, so for me I decided to have a look at WxWidgets integration into VS2005.