Dear All,
It would be a good practice to follow the standard naming convention of C++ (or Visual C++) when you write a program in order to avoid the word confusion.
I would apprecite if you provide me with a documentation or a link about the naming convention of C++ or Visual C++
Your help is appreciated.
Regards
Bassam

Where can I get the naming convention of C++
SteveQ
See the links here:
http://en.wikipedia.org/wiki/Hungarian_notation
http://msdn.microsoft.com/library/en-us/dnvs600/html/HungaNotat.asp
http://msdn.microsoft.com/archive/en-us/dnarw98bk/html/variablenameshungariannotation.asp
Rocky_Guls
The most common convention would be Hungarian notation, which means that you use an abbreviation for type at the start of a variable as in nSize for an int, szSize for a CSize or SIZE, etc. You'd also put m_ for member variables, as in m_szSize.
Really, so long as you have a convention and stick to it, it doesn't matter so much what it is.