Click here to Skip to main content
15,914,163 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to load Cyrillic strings from resources? Pin
Mukkie28-Jan-04 9:34
Mukkie28-Jan-04 9:34 
GeneralHandling Close View event Pin
CodeBrain28-Jan-04 4:59
CodeBrain28-Jan-04 4:59 
GeneralRe: Handling Close View event Pin
basementman28-Jan-04 10:02
basementman28-Jan-04 10:02 
QuestionPlease HELP ME!!! How to get rights accesses of a shared folder programmatically? Pin
bouli28-Jan-04 4:57
bouli28-Jan-04 4:57 
QuestionDraw Circle in Shell with Char ? Pin
Eldalie28-Jan-04 4:27
Eldalie28-Jan-04 4:27 
AnswerRe: Draw Circle in Shell with Char ? Pin
Anonymous28-Jan-04 4:32
Anonymous28-Jan-04 4:32 
GeneralProblem in using application across different Windows Platforms. Pin
abhijo28-Jan-04 3:35
abhijo28-Jan-04 3:35 
GeneralRe: Problem in using application across different Windows Platforms. Pin
Diddy28-Jan-04 4:05
Diddy28-Jan-04 4:05 
All you need to do is to set the appropiate defines before including the windows headers files (either windows.h etc for sdk or afx....h for MFC), you will usually find these includes in stdafx.h. Set them according to this table:

Windows 95 and Windows NT 4.0 WINVER=0x0400
Windows 98 and Windows NT 4.0 _WIN32_WINDOWS=0x0410 and WINVER=0x0400
Windows NT 4.0 _WIN32_WINNT=0x0400 and WINVER=0x0400
Windows 98 _WIN32_WINDOWS=0x0410
Windows 2000 _WIN32_WINNT=0x0500 and WINVER=0x0500
Windows Me _WIN32_WINDOWS=0x0490
XP _WIN32_WINNT=0x0501 and WINVER=0x0501
Internet Explorer 3.0, 3.01, 3.02 _WIN32_IE=0x0300
Internet Explorer 4.0 _WIN32_IE=0x0400
Internet Explorer 4.01 _WIN32_IE=0x0401
Internet Explorer 5.0, 5.0a, 5.0b _WIN32_IE=0x0500
Internet Explorer 5.01, 5.5 _WIN32_IE=0x0501

So say if you wanted to run on all platforms, set WINVER=0x0400 and optionally _WIN32_IE=0x0300 for IE.

Out of intrest, is it your app that crashed on NT or was it installsheld? I would try manually copying your app to the NT box and running it - if it is using features not available in that OS, you should get messages up like "the produre entry point blah blah was not found in blah blah.dll)


GeneralRe: Problem in using application across different Windows Platforms. Pin
abhijo29-Jan-04 3:40
abhijo29-Jan-04 3:40 
GeneralRe: Problem in using application across different Windows Platforms. Pin
Diddy29-Jan-04 7:56
Diddy29-Jan-04 7:56 
QuestionHow to get Parent of a Dialog Pin
AnTri28-Jan-04 3:22
AnTri28-Jan-04 3:22 
AnswerRe: How to get Parent of a Dialog Pin
toxcct28-Jan-04 3:50
toxcct28-Jan-04 3:50 
AnswerRe: How to get Parent of a Dialog Pin
Robert A. T. Káldy28-Jan-04 9:51
Robert A. T. Káldy28-Jan-04 9:51 
GeneralMFCs Pin
amit sebiz28-Jan-04 2:49
amit sebiz28-Jan-04 2:49 
GeneralRe: MFCs Pin
toxcct28-Jan-04 2:56
toxcct28-Jan-04 2:56 
Generalcrc checksum program for cd Pin
johnjsm28-Jan-04 2:42
johnjsm28-Jan-04 2:42 
GeneralRe: crc checksum program for cd Pin
Roger Wright28-Jan-04 3:33
professionalRoger Wright28-Jan-04 3:33 
GeneralI just have problem to open inside !!! Pin
Mehdi_Hosseinpour28-Jan-04 2:40
Mehdi_Hosseinpour28-Jan-04 2:40 
GeneralRe: I just have problem to open inside !!! Pin
David Crow28-Jan-04 2:44
David Crow28-Jan-04 2:44 
GeneralRe: I just have problem to open inside !!! Pin
toxcct28-Jan-04 2:52
toxcct28-Jan-04 2:52 
Generalemulating a hard disk Pin
Möhre28-Jan-04 2:40
Möhre28-Jan-04 2:40 
GeneralRe: emulating a hard disk Pin
Diddy28-Jan-04 4:13
Diddy28-Jan-04 4:13 
GeneralRe: emulating a hard disk Pin
Möhre29-Jan-04 2:01
Möhre29-Jan-04 2:01 
GeneralRe: emulating a hard disk Pin
Diddy29-Jan-04 3:50
Diddy29-Jan-04 3:50 
QuestionHow to male some window - be over some other windows ? Pin
vgrigor28-Jan-04 2:11
vgrigor28-Jan-04 2:11 

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.