Click here to Skip to main content
16,006,594 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How many pixels thick are the frame of my window (Win32) Pin
Hanan88823-Apr-08 2:53
Hanan88823-Apr-08 2:53 
GeneralRe: How many pixels thick are the frame of my window (Win32) Pin
CPallini23-Apr-08 3:19
mveCPallini23-Apr-08 3:19 
GeneralRe: How many pixels thick are the frame of my window (Win32) Pin
Hanan88823-Apr-08 3:30
Hanan88823-Apr-08 3:30 
GeneralRe: How many pixels thick are the frame of my window (Win32) Pin
CPallini23-Apr-08 3:34
mveCPallini23-Apr-08 3:34 
GeneralRe: How many pixels thick are the frame of my window (Win32) Pin
Hanan88823-Apr-08 3:43
Hanan88823-Apr-08 3:43 
GeneralVisual Studio 2008 Manifest Issue Pin
Sarath C23-Apr-08 1:44
Sarath C23-Apr-08 1:44 
GeneralRe: Visual Studio 2008 Manifest Issue Pin
Saurabh.Garg23-Apr-08 2:12
Saurabh.Garg23-Apr-08 2:12 
GeneralRe: Visual Studio 2008 Manifest Issue Pin
Naveen23-Apr-08 6:14
Naveen23-Apr-08 6:14 
The comctl32.dll version 6 supports only UNICODE version. If you open the stdafx.h you can find the switch as follows

#ifdef _UNICODE<br />
#if defined _M_IX86<br />
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")<br />
#elif defined _M_IA64<br />
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")<br />
#elif defined _M_X64<br />
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")<br />
#else<br />
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")<br />
#endif<br />
#endif



GeneralRe: Visual Studio 2008 Manifest Issue Pin
Sarath C23-Apr-08 18:04
Sarath C23-Apr-08 18:04 
GeneralRe: Visual Studio 2008 Manifest Issue Pin
Naveen23-Apr-08 18:31
Naveen23-Apr-08 18:31 
GeneralThumbnail Resizing in List Control on moving slider Pin
Subhash Madhukar23-Apr-08 1:40
Subhash Madhukar23-Apr-08 1:40 
GeneralProblem compiling Templates in VC++7.0 .NET Pin
jonnyvargazz23-Apr-08 1:29
jonnyvargazz23-Apr-08 1:29 
QuestionRe: Problem compiling Templates in VC++7.0 .NET Pin
CPallini23-Apr-08 1:56
mveCPallini23-Apr-08 1:56 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
jonnyvargazz23-Apr-08 3:14
jonnyvargazz23-Apr-08 3:14 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
CPallini23-Apr-08 3:32
mveCPallini23-Apr-08 3:32 
GeneralRe: Problem compiling Templates in VC++7.0 .NET [modified] Pin
jonnyvargazz23-Apr-08 4:15
jonnyvargazz23-Apr-08 4:15 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
Saurabh.Garg23-Apr-08 15:09
Saurabh.Garg23-Apr-08 15:09 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
jonnyvargazz23-Apr-08 21:35
jonnyvargazz23-Apr-08 21:35 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
Saurabh.Garg24-Apr-08 2:06
Saurabh.Garg24-Apr-08 2:06 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
jonnyvargazz24-Apr-08 3:57
jonnyvargazz24-Apr-08 3:57 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
Saurabh.Garg24-Apr-08 4:05
Saurabh.Garg24-Apr-08 4:05 
GeneralRe: Problem compiling Templates in VC++7.0 .NET Pin
jonnyvargazz24-Apr-08 4:15
jonnyvargazz24-Apr-08 4:15 
GeneralWin32 message loop and CPU usage Pin
Hanan88823-Apr-08 0:58
Hanan88823-Apr-08 0:58 
GeneralRe: Win32 message loop and CPU usage Pin
Cedric Moonen23-Apr-08 1:08
Cedric Moonen23-Apr-08 1:08 
GeneralRe: Win32 message loop and CPU usage Pin
Hanan88823-Apr-08 1:18
Hanan88823-Apr-08 1:18 

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.