Click here to Skip to main content
15,915,975 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: newbie C question Pin
David Crow6-Aug-08 3:00
David Crow6-Aug-08 3:00 
Questionenteries in add remove program Pin
VCProgrammer6-Aug-08 1:56
VCProgrammer6-Aug-08 1:56 
AnswerRe: enteries in add remove program Pin
nisha000006-Aug-08 2:24
nisha000006-Aug-08 2:24 
GeneralRe: enteries in add remove program Pin
toxcct6-Aug-08 2:35
toxcct6-Aug-08 2:35 
AnswerRe: enteries in add remove program Pin
_AnsHUMAN_ 6-Aug-08 2:46
_AnsHUMAN_ 6-Aug-08 2:46 
GeneralRe: enteries in add remove program Pin
nisha000006-Aug-08 2:57
nisha000006-Aug-08 2:57 
QuestionXP Styles in Visual Studio 2003 Pin
__DanC__6-Aug-08 1:04
__DanC__6-Aug-08 1:04 
AnswerRe: XP Styles in Visual Studio 2003 Pin
Sarath C6-Aug-08 1:29
Sarath C6-Aug-08 1:29 
Have you added the manifest to your application's resource file as follows?

CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "YourApp.manifest" 


Please check Using Windows XP Visual Styles[^]

In the newer version of visual studio, embedding manifest is as follows by defining it in stdafx.h
#ifdef _UNICODE
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
#endif


-Sarath.
"Great hopes make everything great possible" - Benjamin Franklin

GeneralRe: XP Styles in Visual Studio 2003 Pin
__DanC__6-Aug-08 23:45
__DanC__6-Aug-08 23:45 
QuestionRGB differences Windows 2000 vs XP Pin
kildareflare6-Aug-08 1:04
kildareflare6-Aug-08 1:04 
AnswerRe: RGB differences Windows 2000 vs XP Pin
_AnsHUMAN_ 6-Aug-08 1:39
_AnsHUMAN_ 6-Aug-08 1:39 
GeneralRe: RGB differences Windows 2000 vs XP Pin
kildareflare6-Aug-08 2:21
kildareflare6-Aug-08 2:21 
GeneralRe: RGB differences Windows 2000 vs XP Pin
kildareflare6-Aug-08 4:08
kildareflare6-Aug-08 4:08 
QuestionVC7 libs on VC8 Pin
vikramlinux6-Aug-08 0:54
vikramlinux6-Aug-08 0:54 
AnswerRe: VC7 libs on VC8 Pin
Chris Losinger6-Aug-08 13:35
professionalChris Losinger6-Aug-08 13:35 
QuestionCritical section failed! Pin
SRKSHOME6-Aug-08 0:29
SRKSHOME6-Aug-08 0:29 
AnswerRe: Critical section failed! Pin
SandipG 6-Aug-08 0:37
SandipG 6-Aug-08 0:37 
GeneralRe: Critical section failed! Pin
SRKSHOME6-Aug-08 1:30
SRKSHOME6-Aug-08 1:30 
GeneralRe: Critical section failed! Pin
SandipG 6-Aug-08 1:36
SandipG 6-Aug-08 1:36 
QuestionHow to change a single toolbar icon at runtime? Pin
madmax00015-Aug-08 23:54
madmax00015-Aug-08 23:54 
AnswerRe: How to change a single toolbar icon at runtime? Pin
Sarath C6-Aug-08 0:12
Sarath C6-Aug-08 0:12 
Questionmerge proxy/stub code in ATL server Pin
George_George5-Aug-08 23:46
George_George5-Aug-08 23:46 
QuestionRe: merge proxy/stub code in ATL server Pin
led mike6-Aug-08 4:32
led mike6-Aug-08 4:32 
AnswerRe: merge proxy/stub code in ATL server Pin
George_George6-Aug-08 19:40
George_George6-Aug-08 19:40 
GeneralRe: merge proxy/stub code in ATL server Pin
led mike7-Aug-08 7:13
led mike7-Aug-08 7:13 

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.