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

C / C++ / MFC

 
GeneralNetwork data transfer statistics Pin
dwmon15-Mar-04 14:17
dwmon15-Mar-04 14:17 
GeneralRe: Network data transfer statistics Pin
ian mariano15-Mar-04 18:42
ian mariano15-Mar-04 18:42 
GeneralAuto Tabbin Pin
MeterMan15-Mar-04 13:22
MeterMan15-Mar-04 13:22 
GeneralRe: Auto Tabbin Pin
Brad Bruce15-Mar-04 14:23
Brad Bruce15-Mar-04 14:23 
GeneralRe: Auto Tabbin Pin
MeterMan15-Mar-04 20:24
MeterMan15-Mar-04 20:24 
GeneralResizing list control's column message Pin
wojarex15-Mar-04 13:07
wojarex15-Mar-04 13:07 
GeneralRe: Resizing list control's column message Pin
soggie15-Mar-04 22:04
soggie15-Mar-04 22:04 
GeneralRe: Resizing list control's column message Pin
Roger Allen16-Mar-04 0:30
Roger Allen16-Mar-04 0:30 
It is WM_NOTIFY, but you need the right sub-message:

afx_msg void OnEndtrackConcentrations(NMHDR* pNMHDR, LRESULT* pResult);

ON_NOTIFY(HDN_ENDTRACK, IDC_CONTROL, OnEndtrackControl)

void CYourClass::OnEndtrackControl(NMHDR* pNMHDR, LRESULT* pResult)
{


You may also need to add this line to your OnInitDialog() to get the message mapped correctly, as by default the header control would report a control ID of 0:

m_Control.GetHeaderCtrl()->SetDlgCtrlID(m_Control.GetDlgCtrlID());


Roger Allen - Sonork 100.10016
Roger Wright: Remember to buckle up, please, and encourage your friends to do the same. It's not just about saving your life, but saving the quality of life for those you may leave behind...
GeneralRe: Resizing list control's column message Pin
wojarex16-Mar-04 7:35
wojarex16-Mar-04 7:35 
Questionhow are the editor programs created? Pin
lordgreg15-Mar-04 12:20
lordgreg15-Mar-04 12:20 
AnswerRe: how are the editor programs created? Pin
jhaga15-Mar-04 12:31
professionaljhaga15-Mar-04 12:31 
AnswerRe: how are the editor programs created? Pin
John M. Drescher15-Mar-04 13:03
John M. Drescher15-Mar-04 13:03 
GeneralRe: how are the editor programs created? Pin
lordgreg15-Mar-04 13:58
lordgreg15-Mar-04 13:58 
GeneralRe: how are the editor programs created? Pin
John M. Drescher16-Mar-04 7:41
John M. Drescher16-Mar-04 7:41 
GeneralRe: how are the editor programs created? Pin
lordgreg16-Mar-04 9:24
lordgreg16-Mar-04 9:24 
GeneralRe: how are the editor programs created? Pin
John M. Drescher16-Mar-04 9:29
John M. Drescher16-Mar-04 9:29 
GeneralRe: how are the editor programs created? Pin
lordgreg16-Mar-04 11:35
lordgreg16-Mar-04 11:35 
QuestionMFC: How to change the default filename in the Save As dialog at runtime? Pin
Davex_15-Mar-04 10:57
Davex_15-Mar-04 10:57 
AnswerRe: MFC: How to change the default filename in the Save As dialog at runtime? Pin
basementman15-Mar-04 11:17
basementman15-Mar-04 11:17 
AnswerRe: MFC: How to change the default filename in the Save As dialog at runtime? Pin
Roger Allen16-Mar-04 0:36
Roger Allen16-Mar-04 0:36 
GeneralRe: MFC: How to change the default filename in the Save As dialog at runtime? Pin
Davex_16-Mar-04 4:23
Davex_16-Mar-04 4:23 
GeneralOpen Microsoft Access file from Visual C++ Pin
utowntaz15-Mar-04 10:40
utowntaz15-Mar-04 10:40 
GeneralRe: Open Microsoft Access file from Visual C++ Pin
JWood15-Mar-04 10:50
JWood15-Mar-04 10:50 
GeneralRe: Open Microsoft Access file from Visual C++ Pin
Steve S15-Mar-04 22:08
Steve S15-Mar-04 22:08 
GeneralRe: Open Microsoft Access file from Visual C++ Pin
David Crow16-Mar-04 2:50
David Crow16-Mar-04 2:50 

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.