View Single Post
  #12 (permalink)  
Old 07-22-2008, 06:52 PM
dargueta dargueta is offline
Guru
 
Join Date: Oct 2007
Age: 18
Posts: 861
Last Blog:
Programs Under the Hoo...
Credits: 0
Rep Power: 13
dargueta is a jewel in the roughdargueta is a jewel in the roughdargueta is a jewel in the roughdargueta is a jewel in the rough
Default Re: Visual Basic to C++ Syntax Translation

No, you're catching up with everyone else by switching to .NET.

Drawing on forms is kinda involved for a novice C++ programmer, even using MFC. I strongly suggest you stay away from Win32 (i.e. GUI) programming for a bit until you've got the basics down. Start with console programs first, then work your way up. To draw on a form, you need all these fun things like handles, brushes, device contexts, etc. which Visual Basic conveniently hides from you.

As for your rc.exe (Resource Compiler), you could put your code in a new project; sometimes the project files get messed up and you can't really reset them too well. If that doesn't work, post your resource file (usually called something like projectname.rc or resource.rc) as well as the header file for it (usually resource.h). There might be some syntax violation or perhaps a file missing that rc.exe is looking for. Is there any more text in the error message, or is that it?
Reply With Quote