Click here to Skip to main content
15,902,198 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to use for loop for displaying no in following format? Pin
poonam jagdale26-Mar-10 21:17
poonam jagdale26-Mar-10 21:17 
AnswerRe: how to use for loop for displaying no in following format? Pin
Adam Roderick J26-Mar-10 22:32
Adam Roderick J26-Mar-10 22:32 
AnswerRe: how to use for loop for displaying no in following format? Pin
CPallini26-Mar-10 23:24
mveCPallini26-Mar-10 23:24 
AnswerRe: how to use for loop for displaying no in following format? Pin
Stephen Hewitt27-Mar-10 1:01
Stephen Hewitt27-Mar-10 1:01 
GeneralRe: how to use for loop for displaying no in following format? Pin
normanS29-Mar-10 11:12
normanS29-Mar-10 11:12 
AnswerRe: how to use for loop for displaying no in following format? Pin
Rozis27-Mar-10 13:48
Rozis27-Mar-10 13:48 
GeneralRe: how to use for loop for displaying no in following format? Pin
Tim Craig27-Mar-10 17:54
Tim Craig27-Mar-10 17:54 
AnswerRe: how to use for loop for displaying no in following format? Pin
sthalasayanam28-Mar-10 2:55
sthalasayanam28-Mar-10 2:55 
AnswerRe: how to use for loop for displaying no in following format? Pin
Jonas Hammarberg29-Mar-10 0:18
professionalJonas Hammarberg29-Mar-10 0:18 
QuestionWin32 Processor - How to implement this correctly? Pin
rbwest8626-Mar-10 14:17
rbwest8626-Mar-10 14:17 
AnswerRe: Win32 Processor - How to implement this correctly? Pin
KingsGambit26-Mar-10 17:09
KingsGambit26-Mar-10 17:09 
AnswerRe: Win32 Processor - How to implement this correctly? Pin
Garth J Lancaster26-Mar-10 20:50
professionalGarth J Lancaster26-Mar-10 20:50 
AnswerRe: Win32 Processor - How to implement this correctly? Pin
Adam Roderick J26-Mar-10 22:37
Adam Roderick J26-Mar-10 22:37 
GeneralRe: Win32 Processor - How to implement this correctly? Pin
rbwest8627-Mar-10 7:44
rbwest8627-Mar-10 7:44 
GeneralRe: Win32 Processor - How to implement this correctly? Pin
rbwest8627-Mar-10 14:55
rbwest8627-Mar-10 14:55 
GeneralRe: Win32 Processor - How to implement this correctly? Pin
Adam Roderick J27-Mar-10 16:56
Adam Roderick J27-Mar-10 16:56 
QuestionProblem Showing a window with MFC Pin
andybougard26-Mar-10 12:58
andybougard26-Mar-10 12:58 
AnswerRe: Problem Showing a window with MFC Pin
Joe Woodbury26-Mar-10 15:24
professionalJoe Woodbury26-Mar-10 15:24 
AnswerRe: Problem Showing a window with MFC Pin
sthalasayanam26-Mar-10 17:45
sthalasayanam26-Mar-10 17:45 
GeneralRe: Problem Showing a window with MFC Pin
Cool_Dev27-Mar-10 4:15
Cool_Dev27-Mar-10 4:15 
GeneralRe: Problem Showing a window with MFC Pin
andybougard27-Mar-10 8:59
andybougard27-Mar-10 8:59 
Questionport of VC98 to VS2008 problem with ATL & MFC Pin
danhass26-Mar-10 9:48
danhass26-Mar-10 9:48 
Hi. I'm porting some projects which were orignally built using VC98 (part of Visual STudio 6) to VS2008. So that we can get rid of VS 6 and have everything under VS2008.

Some of the projects are ATL & MFC projects, which apparently is just fine under VS 6, but not in VS2008.

Some of the projects, I have been able to port by removing the MFC includes from the stdafx.h and just including <atlstr.h> where they just needed support for CString.

But some are more MFC intensive. Here's the stdafx.h includes from one:

#include <afxwin.h> // MFC core and standard components

#include <atlbase.h>

extern CComModule _Module;
#include <atlcom.h>

This configuration throws C2065 Undeclared Identifier, C2133 Unknown Size, and C2512 No appropriate default constructor errors. (I guess it can't find the ATL classes.)

If I change the configuration to:

#include <atlbase.h>

extern CComModule _Module;
#include <atlcom.h>

#include <afxwin.h> // MFC core and standard components


I get Error 1 fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h> c:\Program Files\Microsoft Visual Studio 9.0\VC\atlmfc\include\afxv_w32.h 16 editclm
error.

Help is greatly appreciated.
AnswerRe: port of VC98 to VS2008 problem with ATL & MFC Pin
danhass30-Mar-10 9:01
danhass30-Mar-10 9:01 
QuestionIntranet license checker Pin
Sergono26-Mar-10 7:12
Sergono26-Mar-10 7:12 
QuestionRe: Menu in dialog application, CheckMenuItem [modified] Pin
mla15426-Mar-10 7:07
mla15426-Mar-10 7:07 

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.