Click here to Skip to main content
15,912,977 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Programatically copying files Pin
Johnny ²26-Aug-03 21:25
Johnny ²26-Aug-03 21:25 
GeneralRe: Programatically copying files Pin
henchook26-Aug-03 22:21
henchook26-Aug-03 22:21 
GeneralGenerate Ctrl-Alt-Del programmatically Pin
Chintan26-Aug-03 20:58
Chintan26-Aug-03 20:58 
GeneralRe: Generate Ctrl-Alt-Del programmatically Pin
David Crow27-Aug-03 4:33
David Crow27-Aug-03 4:33 
GeneralAdd/Remove Programs under XP Pin
HeiniBlad26-Aug-03 20:48
HeiniBlad26-Aug-03 20:48 
GeneralRe: Add/Remove Programs under XP Pin
Michael P Butler27-Aug-03 1:42
Michael P Butler27-Aug-03 1:42 
GeneralUse VS .Net to Write & Compile old MFC42 code Pin
HeiniBlad26-Aug-03 20:38
HeiniBlad26-Aug-03 20:38 
GeneralRe: Use VS .Net to Write & Compile old MFC42 code Pin
igor196026-Aug-03 21:14
igor196026-Aug-03 21:14 
That's just my experience. Worked fine though:

1. Have parallel to .NET 2003 IDE -- VC6 installation;
2. Created simple MFC project (Dialog);
3. Project Settings/C/C++/Preprocessor/Ignore Standard Include Path - set to Yes;
4. Project Settings/C/C++/General/Additional Include Dirs - put the same that I have in VC6/Tools/Options/Directories/Include files and in the same order;
5. Project Settings/Linker/Additional Library Directories - put the same as I have in VC6 VC6/Tools/Options/Directories/Library Files and in the same order;
6. For Debug configuration: Disable Basic Runtime Check: Debug/Project Settings/C/C++/Code Generation/Basic Runtime Check/Set to Default;
7. For Release configuration: Disable Buffer Security Check: Release/Project Settings/C/C++/Code Generation/Buffer Security Check/Set to No;

8. If you are using CRT with floating point you may get:
LNK2001: unresolved external symbol __ftol2
To fix that add the following switch to C command line: /QIfist

9. If you are using C++ Exception Handling (/EHsc) you may get the following error at Link stage (usualy in Release):
LNK2019: unresolved external symbol __SEH_prolog referenced in function...
To fix that add sehprolg.obj at the link stage (Link/Additional Dependencies).
You can find it in latest MSDN Platform Microsoft SDK Lib subdir.


"...Ability to type is not enough to become a Programmer. Unless you type in VB. But then again you have to type really fast..."
Me
Generalstatic const data member -> Compiler error C2057. Pin
Neville Franks26-Aug-03 20:37
Neville Franks26-Aug-03 20:37 
GeneralRe: static const data member -> Compiler error C2057. Pin
Michael Dunn26-Aug-03 21:57
sitebuilderMichael Dunn26-Aug-03 21:57 
GeneralRe: static const data member -> Compiler error C2057. Pin
Neville Franks27-Aug-03 1:24
Neville Franks27-Aug-03 1:24 
GeneralRe: static const data member -> Compiler error C2057. Pin
Serge Krynine26-Aug-03 22:56
Serge Krynine26-Aug-03 22:56 
GeneralRe: static const data member -> Compiler error C2057. Pin
Neville Franks27-Aug-03 1:21
Neville Franks27-Aug-03 1:21 
QuestionActiveX keeps running after closing IE ? Pin
suninwater26-Aug-03 20:33
suninwater26-Aug-03 20:33 
AnswerRe: ActiveX keeps running after closing IE ? Pin
suninwater27-Aug-03 14:39
suninwater27-Aug-03 14:39 
GeneralAdding existing files to a DLL Pin
Marina Aronchik26-Aug-03 20:08
Marina Aronchik26-Aug-03 20:08 
QuestionHow i can recognize which thread launch current thread??? Pin
El'Cachubrey26-Aug-03 20:05
El'Cachubrey26-Aug-03 20:05 
AnswerRe: How i can block one thread from another Pin
Joey Bloggs26-Aug-03 20:44
Joey Bloggs26-Aug-03 20:44 
Generalneed help again...IS file or directory Pin
rohit.dhamija26-Aug-03 20:02
rohit.dhamija26-Aug-03 20:02 
GeneralRe: need help again...IS file or directory Pin
henchook26-Aug-03 22:26
henchook26-Aug-03 22:26 
GeneralRe: need help again...IS file or directory Pin
rohit.dhamija27-Aug-03 1:25
rohit.dhamija27-Aug-03 1:25 
GeneralWorking with a CVS Pin
Jerome Conus26-Aug-03 20:01
Jerome Conus26-Aug-03 20:01 
GeneralRe: Working with a CVS Pin
David Crow27-Aug-03 4:52
David Crow27-Aug-03 4:52 
GeneralGet File Extension ....Help out great guys. Pin
rohit.dhamija26-Aug-03 18:23
rohit.dhamija26-Aug-03 18:23 
GeneralRe: Get File Extension ....Help out great guys. Pin
igor196026-Aug-03 18:40
igor196026-Aug-03 18:40 

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.