Click here to Skip to main content
15,897,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to insert property sheet to other dialog. Pin
KASR115-Dec-08 18:35
KASR115-Dec-08 18:35 
AnswerRe: How to insert property sheet to other dialog. Pin
Naveen15-Dec-08 19:02
Naveen15-Dec-08 19:02 
GeneralRe: How to insert property sheet to other dialog. Pin
KASR115-Dec-08 21:25
KASR115-Dec-08 21:25 
AnswerRe: How to insert property sheet to other dialog. Pin
Malli_S15-Dec-08 19:56
Malli_S15-Dec-08 19:56 
QuestionGet Disk Size Pin
Davitor15-Dec-08 17:59
Davitor15-Dec-08 17:59 
AnswerRe: Get Disk Size Pin
nbugalia15-Dec-08 18:49
nbugalia15-Dec-08 18:49 
QuestionCreateTimerQueue Pin
shaina223115-Dec-08 17:53
shaina223115-Dec-08 17:53 
AnswerRe: CreateTimerQueue Pin
nbugalia15-Dec-08 18:58
nbugalia15-Dec-08 18:58 
shaina2231 wrote:
error C2065


Following are the reasons for Error C2065 from MSDN.

1. You are compiling with a debug version of the C runtime, declaring a Standard C++ Library iterator variable in a for loop, and then trying to use that iterator variable outside the scope of the for loop. Compiling Standard C++ Library code with a debug version of the C runtime implies /Zc:forScope. See Debug Iterator Support for more information.

2. You may be calling a function in an SDK header file that is currently not supported in your build environment.

3. Omitting necessary include files, especially if you define VC_EXTRALEAN, WIN32_LEAN_AND_MEAN, or WIN32_EXTRA_LEAN. These symbols exclude some header files from windows.h and afxv_w32.h to speed compiles. (Look in windows.h and afxv_w32.h for an up-to-date description of what's excluded.)

4. Identifier name is misspelled.

5. Identifier uses the wrong uppercase and lowercase letters.

6. Missing closing quote after a string constant.

7. Improper namespace scope. To resolve ANSI C++ Standard Library functions and operators, for example, you must specify the std namespace with the using directive. The following example fails to compile because the using directive is commented out and cout is defined in the std namespace:

shaina2231 wrote:
what can be the solution


Please make sure that you are not doing any of them.
AnswerRe: CreateTimerQueue Pin
Naveen15-Dec-08 19:00
Naveen15-Dec-08 19:00 
AnswerRe: CreateTimerQueue Pin
Jijo.Raj15-Dec-08 19:05
Jijo.Raj15-Dec-08 19:05 
GeneralRe: CreateTimerQueue Pin
shaina223115-Dec-08 20:24
shaina223115-Dec-08 20:24 
GeneralRe: CreateTimerQueue Pin
Chandrasekharan P15-Dec-08 20:52
Chandrasekharan P15-Dec-08 20:52 
QuestionOpenProcess Access Denied Pin
ForNow15-Dec-08 17:04
ForNow15-Dec-08 17:04 
AnswerRe: OpenProcess Access Denied Pin
Jijo.Raj15-Dec-08 19:07
Jijo.Raj15-Dec-08 19:07 
AnswerRe: OpenProcess Access Denied Pin
Sarath C15-Dec-08 21:12
Sarath C15-Dec-08 21:12 
GeneralRe: OpenProcess Access Denied Pin
ForNow15-Dec-08 23:36
ForNow15-Dec-08 23:36 
GeneralRe: OpenProcess Access Denied Pin
Jijo.Raj16-Dec-08 20:56
Jijo.Raj16-Dec-08 20:56 
GeneralRe: OpenProcess Access Denied Pin
ForNow16-Dec-08 23:40
ForNow16-Dec-08 23:40 
QuestionVC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
pratap198015-Dec-08 13:10
pratap198015-Dec-08 13:10 
AnswerRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
Stuart Dootson15-Dec-08 13:41
professionalStuart Dootson15-Dec-08 13:41 
GeneralRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
pratap198015-Dec-08 13:43
pratap198015-Dec-08 13:43 
GeneralRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
Stuart Dootson15-Dec-08 13:45
professionalStuart Dootson15-Dec-08 13:45 
GeneralRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
pratap198015-Dec-08 13:55
pratap198015-Dec-08 13:55 
GeneralRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
Stuart Dootson15-Dec-08 20:19
professionalStuart Dootson15-Dec-08 20:19 
GeneralRe: VC++ 6.0 tp 9.0 porting issue with CDataExchange Pin
Garth J Lancaster15-Dec-08 14:42
professionalGarth J Lancaster15-Dec-08 14:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.