Click here to Skip to main content
15,880,796 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionIs it harmful to delete IMPLEMENT_DYNCREATE of CPropertyPage? Pin
includeh1026-Jun-10 18:12
includeh1026-Jun-10 18:12 
AnswerRe: Is it harmful to delete IMPLEMENT_DYNCREATE of CPropertyPage? Pin
KarstenK27-Jun-10 21:43
mveKarstenK27-Jun-10 21:43 
AnswerBarcode Application Usage [was: Re: Is it harmful to delete IMPLEMENT_DYNCREATE of CPropertyPage?] Pin
gvMadhav24-Jul-10 17:54
gvMadhav24-Jul-10 17:54 
QuestionA RichEdit without any borders [Solved] Pin
Rozis26-Jun-10 6:50
Rozis26-Jun-10 6:50 
AnswerRe: A RichEdit without any borders Pin
Niklas L26-Jun-10 10:36
Niklas L26-Jun-10 10:36 
GeneralRe: A RichEdit without any borders Pin
Rozis29-Jun-10 4:03
Rozis29-Jun-10 4:03 
GeneralRe: A RichEdit without any borders Pin
Niklas L29-Jun-10 10:06
Niklas L29-Jun-10 10:06 
AnswerRe: A RichEdit without any borders Pin
Xeqtr26-Jun-10 10:44
Xeqtr26-Jun-10 10:44 
Look there http://msdn.microsoft.com/en-us/library/bb787873(VS.85).aspx

I guess that your form style like win98. To turn on XP or later versions style, include this code:

#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

GeneralRe: A RichEdit without any borders Pin
Rozis29-Jun-10 4:01
Rozis29-Jun-10 4:01 
Questionsorting alphabetically Pin
raju_shiva25-Jun-10 21:53
raju_shiva25-Jun-10 21:53 
AnswerRe: sorting alphabetically Pin
Richard MacCutchan25-Jun-10 22:18
mveRichard MacCutchan25-Jun-10 22:18 
AnswerRe: sorting alphabetically Pin
Shivanand Gupta26-Jun-10 2:40
Shivanand Gupta26-Jun-10 2:40 
AnswerRe: sorting alphabetically [modified] Pin
Aescleal26-Jun-10 4:05
Aescleal26-Jun-10 4:05 
QuestionRe: sorting alphabetically Pin
David Crow28-Jun-10 4:03
David Crow28-Jun-10 4:03 
QuestionData Execution Prevention Pin
T.RATHA KRISHNAN25-Jun-10 20:48
T.RATHA KRISHNAN25-Jun-10 20:48 
AnswerRe: Data Execution Prevention Pin
«_Superman_»26-Jun-10 2:14
professional«_Superman_»26-Jun-10 2:14 
AnswerRe: Data Execution Prevention Pin
MindCoder7927-Jun-10 17:55
MindCoder7927-Jun-10 17:55 
QuestionTesting if Unicode Pin
Hans Dietrich25-Jun-10 19:52
mentorHans Dietrich25-Jun-10 19:52 
AnswerRe: Testing if Unicode Pin
Rajesh R Subramanian25-Jun-10 21:09
professionalRajesh R Subramanian25-Jun-10 21:09 
GeneralRe: Testing if Unicode Pin
Hans Dietrich25-Jun-10 21:54
mentorHans Dietrich25-Jun-10 21:54 
GeneralRe: Testing if Unicode Pin
ThatsAlok27-Jun-10 19:20
ThatsAlok27-Jun-10 19:20 
AnswerRe: Testing if Unicode PinPopular
Richard MacCutchan25-Jun-10 22:12
mveRichard MacCutchan25-Jun-10 22:12 
GeneralRe: Testing if Unicode Pin
Rajesh R Subramanian25-Jun-10 23:38
professionalRajesh R Subramanian25-Jun-10 23:38 
GeneralRe: Testing if Unicode [modified] Pin
Richard MacCutchan26-Jun-10 0:05
mveRichard MacCutchan26-Jun-10 0:05 
AnswerRe: Nothing seems to work Pin
Software_Developer26-Jun-10 2:29
Software_Developer26-Jun-10 2:29 

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.