Click here to Skip to main content
16,003,345 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Using a tree control as an interface. Pin
Ray Cassick28-Sep-02 4:44
Ray Cassick28-Sep-02 4:44 
GeneralCHtmlView in a CDialog Pin
monrobot1327-Sep-02 5:16
monrobot1327-Sep-02 5:16 
GeneralRe: CHtmlView in a CDialog Pin
jmkhael27-Sep-02 5:22
jmkhael27-Sep-02 5:22 
GeneralRe: CHtmlView in a CDialog Pin
monrobot1327-Sep-02 6:58
monrobot1327-Sep-02 6:58 
QuestionEmbedded VC++ 3.0... does it work fine ? Pin
Braulio Dez27-Sep-02 4:19
Braulio Dez27-Sep-02 4:19 
GeneralCoInitializeEx & _WIN32_WINNT Pin
Jon Hulatt27-Sep-02 4:01
Jon Hulatt27-Sep-02 4:01 
GeneralRe: CoInitializeEx & _WIN32_WINNT Pin
Andreas Saurwein27-Sep-02 4:23
Andreas Saurwein27-Sep-02 4:23 
GeneralRe: CoInitializeEx & _WIN32_WINNT Pin
Rohit  Sinha27-Sep-02 5:09
Rohit  Sinha27-Sep-02 5:09 
This is a macro used to target your app for specific platforms depending on the value. By default, Win NT 3.51 is targeted. If you want to target a version of NT greater than that, you need to define it.

_WIN32_WINNT = 0x0400 => NT 4
_WIN32_WINNT = 0x0500 => Win2k
_WIN32_WINNT = 0x0600 => Win XP (??? not sure here)

You can define the value in StdAfx.h, or at the top of the file which includes the required header file. But then you'll have to remember which files you defined them, and remember to update each of them if your target platform changes, so it's better to do it in StdAfx.h.


  Regards,

  Rohit Sinha

GeneralCopying a CString to the clipboard Pin
Anonymous27-Sep-02 4:00
Anonymous27-Sep-02 4:00 
GeneralRe: Copying a CString to the clipboard Pin
Andreas Saurwein27-Sep-02 4:08
Andreas Saurwein27-Sep-02 4:08 
GeneralRe: Copying a CString to the clipboard Pin
Daniel Ferguson27-Sep-02 4:19
Daniel Ferguson27-Sep-02 4:19 
GeneralRe: Copying a CString to the clipboard Pin
Anonymous27-Sep-02 4:32
Anonymous27-Sep-02 4:32 
GeneralRe: Copying a CString to the clipboard Pin
valikac27-Sep-02 6:22
valikac27-Sep-02 6:22 
GeneralCalling convention in a DLL Pin
Paul Riley27-Sep-02 3:37
Paul Riley27-Sep-02 3:37 
GeneralRe: Calling convention in a DLL Pin
KaЯl27-Sep-02 3:58
KaЯl27-Sep-02 3:58 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:11
Paul Riley27-Sep-02 4:11 
GeneralRe: Calling convention in a DLL Pin
Anonymous27-Sep-02 4:04
Anonymous27-Sep-02 4:04 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:14
Paul Riley27-Sep-02 4:14 
GeneralRe: Calling convention in a DLL Pin
Anonymous27-Sep-02 4:25
Anonymous27-Sep-02 4:25 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:30
Paul Riley27-Sep-02 4:30 
GeneralRe: Calling convention in a DLL Pin
jmkhael27-Sep-02 4:40
jmkhael27-Sep-02 4:40 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:58
Paul Riley27-Sep-02 4:58 
Generalrelease as default Pin
Zizilamoroso27-Sep-02 3:24
Zizilamoroso27-Sep-02 3:24 
GeneralRe: release as default Pin
Andreas Saurwein27-Sep-02 4:09
Andreas Saurwein27-Sep-02 4:09 
GeneralRe: release as default Pin
Zizilamoroso27-Sep-02 4:28
Zizilamoroso27-Sep-02 4:28 

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.