본문 바로가기

Windows/MFC

CListCtrl Reading colums (GetItemText)

Example

[code]nCountDecrement = m_nCountSelectedPhoneNumber;
while(nCountDecrement)
{
    TRACE(L"LOOP\n");
    if (m_listNumber.GetItemText(nCountDecrement-1, 0) == pString->szPhoneNumber)
    {
        bJump = true;
        break;
    }
    nCountDecrement--;
}[/code]

'Windows > MFC' 카테고리의 다른 글

Regexp Regular expression  (0) 2013.10.02
CListCtrl count of total items (GetItemCount)  (0) 2013.10.02
XML Parser (TinyXML )  (0) 2013.10.02
MFC Class 간 통신  (0) 2013.10.02
How to install and use Boost (My version for vs8)  (0) 2013.10.02