Click here to Skip to main content
15,881,204 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Why two vfptr incase of virtual inhertance? Pin
prasad_som1-Sep-07 3:59
prasad_som1-Sep-07 3:59 
QuestionAccess between classes Pin
BuckBrown31-Aug-07 10:47
BuckBrown31-Aug-07 10:47 
AnswerRe: Access between classes Pin
Gammill31-Aug-07 10:57
Gammill31-Aug-07 10:57 
QuestionHowTo: Create MFC CDialog from Win Forms Pin
Gammill31-Aug-07 9:39
Gammill31-Aug-07 9:39 
AnswerRe: HowTo: Create MFC CDialog from Win Forms Pin
Gammill31-Aug-07 10:49
Gammill31-Aug-07 10:49 
QuestionIdentification of batch file name/path Pin
Jack Rong30-Aug-07 4:54
Jack Rong30-Aug-07 4:54 
QuestionI Need to make the CListCtrl non sortable at run time Pin
Javed Akhtar Ansari30-Aug-07 0:49
Javed Akhtar Ansari30-Aug-07 0:49 
AnswerRe: I Need to make the CListCtrl non sortable at run time Pin
sps-itsec4630-Aug-07 1:31
sps-itsec4630-Aug-07 1:31 
Hi!

CListCtrl sounds like MFC (i.e. unmanaged), so I guess you've asked this question in the wrong forum. Try here: Visual C++ / MFC[^]

But wait... try if this answers your question:
CListCtrl yourListCtrl;

...

CHeaderCtrl* pHeader = yourListCtrl.GetHeaderCtrl();
if(pHeader)
{
  // (1) do this to enable header push buttons
  pHeader->ModifyStyle(0, HDS_BUTTONS);

  // (2) do this to disable header push buttons
  pHeader->ModifyStyle(HDS_BUTTONS, 0);
}




cheers,
mykel

OMM: "Let us be thankful we have an occupation to fill. Work hard, increase production, prevent accidents and be happy."

QuestionWarnings in c++/cli that make me a lot of headache Pin
hansipet29-Aug-07 23:07
hansipet29-Aug-07 23:07 
AnswerRe: Warnings in c++/cli that make me a lot of headache Pin
George L. Jackson30-Aug-07 1:53
George L. Jackson30-Aug-07 1:53 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
hansipet30-Aug-07 2:19
hansipet30-Aug-07 2:19 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
George L. Jackson30-Aug-07 2:53
George L. Jackson30-Aug-07 2:53 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
hansipet30-Aug-07 20:19
hansipet30-Aug-07 20:19 
QuestionRe: Warnings in c++/cli that make me a lot of headache Pin
George L. Jackson31-Aug-07 0:07
George L. Jackson31-Aug-07 0:07 
AnswerRe: Warnings in c++/cli that make me a lot of headache Pin
hansipet31-Aug-07 1:57
hansipet31-Aug-07 1:57 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
George L. Jackson31-Aug-07 9:25
George L. Jackson31-Aug-07 9:25 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
hansipet1-Sep-07 8:55
hansipet1-Sep-07 8:55 
GeneralRe: Warnings in c++/cli that make me a lot of headache Pin
George L. Jackson30-Aug-07 3:51
George L. Jackson30-Aug-07 3:51 
Questionmixed types are not supported? Pin
Rui A Sousa29-Aug-07 6:45
Rui A Sousa29-Aug-07 6:45 
AnswerRe: mixed types are not supported? Pin
led mike29-Aug-07 7:06
led mike29-Aug-07 7:06 
AnswerRe: mixed types are not supported? Pin
Mark Salsbery29-Aug-07 8:07
Mark Salsbery29-Aug-07 8:07 
QuestionMaking Dialog Boxes Modal Pin
gunner_uk200029-Aug-07 5:58
gunner_uk200029-Aug-07 5:58 
AnswerRe: Making Dialog Boxes Modal Pin
Mark Salsbery29-Aug-07 8:16
Mark Salsbery29-Aug-07 8:16 
QuestionCan not convert from short __gc* to short* Pin
Thanks for all the fish28-Aug-07 23:41
Thanks for all the fish28-Aug-07 23:41 
AnswerRe: Can not convert from short __gc* to short* Pin
led mike29-Aug-07 5:16
led mike29-Aug-07 5:16 

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.