What does error C2065 mean? I have the error posted below. How do I fix the problem?

c:\documents and settings\projects\mortgageapp.cpp(7) : error C2065: 'end1' : undeclared identifier

Build log was saved at "file://c:\Documents and Settings\Visual Studio 2005\Projects\MortgageApp\MortgageApp\Debug\BuildLog.htm"

MortgageApp - 1 error(s), 0 warning(s

[321 byte] By [BryJ] at [2007-12-20]
# 1

That means you have been using some variable without being defined or declared previously. In your case, you need to define end1 before using it.

Take a look at http://msdn2.microsoft.com/en-us/library/ewcf0002.aspx for more detailed description of the error.

Thanks,
Ayman Shoukry
VC++ Team
AymanShoukry at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...
# 2

unless my eyes serve me wrong, it looks like you have "end1" (endONE)

it should be "endl"

so, go back and just change the last character to an L, instead of a 1. I remember I ran into the same problem when I first started >.<

bchan at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...