Using Visual C++ 2008. First time, I'm experimenting in crossing over from C# and wanted to try my hand at it. I have not changed base settings much, other than a few things like smart block and maybe a few colors. Because I'm at level ZERO on c++ knowledge all the googling I've done is over my head. Issue with intellisense and error listing/checking
Part 1 of the probelm My issue is that I just created my first windows form project. now that I double click and go into something like this, intellisense doesn't list any members?
private: System::Void executeDocumentationCmd_Click(System::Object^ sender, System::EventArgs^ e) { this. NOTHING POPS UP? }
If I type in MessageBox::, then it will popup intellisense for "Show". Is this normal? I find it helpful as I'm learning basics to have it list available txt boxes and members, but it won't do that like it does in c# intellisense.
I have stdafx.h included. I deleted the ncb file per online help and restarted, nothing. Additional headers? Remember I'm new, and I haven't done anything beyond a simple "hello" world in c++ so help me out if you can.
Part 2 of the problem: No underlined errors in realtime coding as in c# editing. Is this a feature that c++ express has, error checking before the compile, since I'm not seeing any warnings or errors listed as I type in wrong information.
Thanks!