Click here to Skip to main content
15,918,706 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralProblems using the new Platform SDK Pin
Kharfax12-May-05 7:18
Kharfax12-May-05 7:18 
GeneralRe: Problems using the new Platform SDK Pin
Alexander M.,12-May-05 7:25
Alexander M.,12-May-05 7:25 
GeneralRe: Problems using the new Platform SDK Pin
Kharfax12-May-05 7:33
Kharfax12-May-05 7:33 
GeneralRe: Problems using the new Platform SDK Pin
Kharfax12-May-05 7:43
Kharfax12-May-05 7:43 
GeneralRe: Problems using the new Platform SDK Pin
David Crow12-May-05 9:07
David Crow12-May-05 9:07 
GeneralRe: Problems using the new Platform SDK Pin
David Crow12-May-05 8:17
David Crow12-May-05 8:17 
GeneralRe: Problems using the new Platform SDK Pin
Kharfax12-May-05 8:37
Kharfax12-May-05 8:37 
GeneralRe: Problems using the new Platform SDK Pin
David Crow12-May-05 9:04
David Crow12-May-05 9:04 
Kharfax wrote:
I don`t know, that is what Microsoft says that should be defined in

There's nothing on the link that you provided that indictaes the required values of WINVER or _WIN32_WINNT. The only requirement I found was in winuser.h which indicates that _WIN32_WINNT must have a value >= 0x0500. To see what value it does have, you'll need to put in a few lines of code. The easiest way would be to add the following at the earliest possible moment (e.g., right inside of main() or WinMain()):

char s[8];
sprintf(s, "%#x", _WIN32_WINNT);
Then set a breakpoint on that statement and check the value of s.


"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown


General840222 - reviewing Pin
ilostmyid212-May-05 7:15
professionalilostmyid212-May-05 7:15 
GeneralRe: 840222 - reviewing Pin
Bob X12-May-05 7:21
Bob X12-May-05 7:21 
GeneralRe: 840222 - reviewing Pin
David Crow12-May-05 8:09
David Crow12-May-05 8:09 
GeneralRe: 840222 - reviewing Pin
ilostmyid213-May-05 5:48
professionalilostmyid213-May-05 5:48 
GeneralRe: 840222 - reviewing Pin
David Crow13-May-05 6:33
David Crow13-May-05 6:33 
Questionhow to update edit control text Pin
NLMurthy12-May-05 6:56
NLMurthy12-May-05 6:56 
AnswerRe: how to update edit control text Pin
Ravi Bhavnani12-May-05 7:04
professionalRavi Bhavnani12-May-05 7:04 
GeneralRe: how to update edit control text Pin
NLMurthy12-May-05 7:12
NLMurthy12-May-05 7:12 
GeneralRe: how to update edit control text Pin
Ravi Bhavnani12-May-05 7:16
professionalRavi Bhavnani12-May-05 7:16 
AnswerRe: how to update edit control text Pin
Priyank Bolia12-May-05 7:18
Priyank Bolia12-May-05 7:18 
GeneralDivide evenly Pin
Anonymous12-May-05 6:45
Anonymous12-May-05 6:45 
GeneralRe: Divide evenly Pin
Ravi Bhavnani12-May-05 7:04
professionalRavi Bhavnani12-May-05 7:04 
GeneralRe: Divide evenly Pin
Anonymous12-May-05 7:17
Anonymous12-May-05 7:17 
GeneralOwner Draw Image List / Changing Image Colors Pin
gpenno212-May-05 6:38
gpenno212-May-05 6:38 
QuestionHow to change text color letter by letter Pin
Jared F.12-May-05 6:10
Jared F.12-May-05 6:10 
AnswerRe: How to change text color letter by letter Pin
David Crow12-May-05 6:39
David Crow12-May-05 6:39 
GeneralRe: How to change text color letter by letter Pin
Jared F.20-May-05 5:43
Jared F.20-May-05 5:43 

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.