Ben iSubItem correspond au numéro de la colonne (0, 1, 2), puisque si je met un truc du style :
Code :
- if( pNMLISTVIEW->iSubItem == 0) {
- AfxMessageBox(_T("colonne 0" ));
- }
- if( pNMLISTVIEW->iSubItem == 1) {
- AfxMessageBox(_T("colonne 1" ));
- }
- if( pNMLISTVIEW->iSubItem == 2) {
- AfxMessageBox(_T("colonne 2" ));
- }
|
J'obtiens bien les bons numéros de colonne.