views:

60

answers:

1

Is there a difference or is it as simple as #define WC_BUTTON "BUTTON"? Also, if I use InitCommonControlsEx in place of InitCommonControls, do I still need to include a manifest?

+1  A: 

Yes, its as you say:

CommCtrl.h

// Button Class Name
#define WC_BUTTONA  "Button"
#define WC_BUTTONW  L"Button"

You still need a manifest if you use InitCommonControlsEx as you need to use V6 of the common controls.

Alex K.
Alright, thanks, Alex!
Grant
I have to wait 3 minutes to accept your answer...
Grant