Zum Inhalt springen

SortItems tut nicht!!! Bug?


Babybaer

Empfohlene Beiträge

Hallo Leutz,

VS.Net 7.0.1

ich habe mal wieder ein Problem. In meiner ListCtrl funkt das Sortieren nicht.

Ich bekomme in der CALLBACK Funktion kein LPARAM lParam1 und LPARAM lParam2. Was mach ich falsch??? In der MSDN stehts genau so (fast).

void CMyList::OnLvnColumnclickListdelta(NMHDR *pNMHDR, LRESULT *pResult)

{

NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;

*pResult = 0;

SortInfo.pListCtrl = &m_ctrlListMsiDelta;

SortInfo.iList = pNMListView->iSubItem;

if(SortInfo.bSortDirection == true)

SortInfo.bSortDirection = false;

else

SortInfo.bSortDirection = true;

m_ctrlListMsiDelta.SortItems(CompareDelta, (DWORD)&SortInfo);

for(int i = 0;i < m_ctrlListMsiDelta.GetItemCount(); i++)

{

m_ctrlListMsiDelta.SetItemData(i,i);

}

}

int CALLBACK CompareDelta(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)

{

STRUCKT_SORT_INFO *pSortInfo = reinterpret_cast<STRUCKT_SORT_INFO*>(lParamSort);

//CString test = pSortInfo->pListCtrl->GetItemText(0,0);

CString strItem1 = pSortInfo->pListCtrl->GetItemText(lParam1, pSortInfo->iList);

CString strItem2 = pSortInfo->pListCtrl->GetItemText(lParam2, pSortInfo->iList);

int iResult = 0;

if(pSortInfo->iList == 0)

{

int a = atoi(strItem1);

int b = atoi(strItem2);

if(pSortInfo->bSortDirection == true)

{

if( a < b )

iResult = 1;

else

iResult = -1;

}else

if( a > b )

iResult = 1;

else

iResult = -1;

}

else

{

iResult = strcmp(strItem1, strItem2);

if(pSortInfo->bSortDirection == true)

iResult *= -1;

}

return iResult;

}

Link zu diesem Kommentar
Auf anderen Seiten teilen

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung wiederherstellen

  Nur 75 Emojis sind erlaubt.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Editor leeren

×   Du kannst Bilder nicht direkt einfügen. Lade Bilder hoch oder lade sie von einer URL.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...