Click here to Skip to main content
15,916,442 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
omissom20022-Dec-03 22:41
omissom20022-Dec-03 22:41 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
Debs3-Dec-03 23:14
Debs3-Dec-03 23:14 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
Anonymous4-Dec-03 20:35
Anonymous4-Dec-03 20:35 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
David Crow2-Dec-03 9:49
David Crow2-Dec-03 9:49 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
Taka Muraoka2-Dec-03 14:57
Taka Muraoka2-Dec-03 14:57 
GeneralRe: C++ Programming on Concert Hall Reservation sytem Pin
Debs3-Dec-03 23:02
Debs3-Dec-03 23:02 
GeneralDon't show places bar Pin
Urban Olars1-Dec-03 22:24
Urban Olars1-Dec-03 22:24 
GeneralRe: Don't show places bar Pin
Mike Dimmick1-Dec-03 23:11
Mike Dimmick1-Dec-03 23:11 
To get the members defined, you need to define _WIN32_WINNT to be 0x0500 or higher (for some Windows XP-specific stuff, you need to set it to 0x0501). This macro and its cousins _WIN32_WINDOWS and _WIN32_IE are used in the Windows SDK headers to control which macros, functions and structures are available - preventing you from accidentally compiling code which won't run on your target platform. Visual C++ sets _WIN32_WINNT to be 0x0400 by default, meaning that any features added to Windows 2000 or later are excluded from the build.

Decide what the minimum platform you'll support is, then define macros appropriately. You can get a current list at the page Using the SDK Headers[^].

You can write code that will still run on NT 4.0 and earlier for OPENFILENAME by calling GetVersionEx and checking whether dwMajorVersion is greater than 5. If not, set lStructSize to be OPENFILENAME_SIZE_VERSION_400 rather than sizeof(OPENFILENAME).
Generalrotating gripper in top left corner of scroll bar Pin
suneetchandok1-Dec-03 22:17
susssuneetchandok1-Dec-03 22:17 
GeneralLoading an Icon to a Button from a local directory in runtime Pin
harinat1-Dec-03 21:56
harinat1-Dec-03 21:56 
GeneralRe: Loading an Icon to a Button from a local directory in runtime Pin
Prakash Nadar1-Dec-03 22:56
Prakash Nadar1-Dec-03 22:56 
GeneralRe: Loading an Icon to a Button from a local directory in runtime Pin
Kene1-Dec-03 23:14
Kene1-Dec-03 23:14 
QuestionHow can I override CPropertySheet::RemovePage(int nPage) in a derived class? Pin
mfc_surfer1-Dec-03 21:35
mfc_surfer1-Dec-03 21:35 
AnswerRe: How can I override CPropertySheet::RemovePage(int nPage) in a derived class? Pin
Kene1-Dec-03 22:19
Kene1-Dec-03 22:19 
GeneralRe: How can I override CPropertySheet::RemovePage(int nPage) in a derived class? Pin
mfc_surfer1-Dec-03 22:39
mfc_surfer1-Dec-03 22:39 
QuestionHow Can I pass a dynamic message from a parent class to its derived class? Pin
mfc_surfer1-Dec-03 21:31
mfc_surfer1-Dec-03 21:31 
AnswerRe: How Can I pass a dynamic message from a parent class to its derived class? Pin
Kene2-Dec-03 0:31
Kene2-Dec-03 0:31 
GeneralRe: How Can I pass a dynamic message from a parent class to its derived class? Pin
mfc_surfer2-Dec-03 0:54
mfc_surfer2-Dec-03 0:54 
GeneralRe: How Can I pass a dynamic message from a parent class to its derived class? Pin
Kene2-Dec-03 2:11
Kene2-Dec-03 2:11 
Generalplzzz help! Re: How Can I pass a dynamic message from a parent class to its derived class? Pin
mfc_surfer4-Dec-03 0:30
mfc_surfer4-Dec-03 0:30 
GeneralRe: plzzz help! Re: How Can I pass a dynamic message from a parent class to its derived class? Pin
Kene5-Dec-03 3:50
Kene5-Dec-03 3:50 
Questionhow can i get the all information given by nbtstat command in vc Pin
Member 6566481-Dec-03 21:18
Member 6566481-Dec-03 21:18 
AnswerRe: how can i get the all information given by nbtstat command in vc Pin
Mike Dimmick1-Dec-03 23:51
Mike Dimmick1-Dec-03 23:51 
GeneralRe: how can i get the all information given by nbtstat command in vc Pin
Member 6566482-Dec-03 20:39
Member 6566482-Dec-03 20:39 
GeneralRe: how can i get the all information given by nbtstat command in vc Pin
Member 6566482-Dec-03 20:58
Member 6566482-Dec-03 20:58 

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.