|
|
От: |
Stamp
|
|
| Дата: | 01.03.06 12:44 | ||
| Оценка: | |||
S>struct CListItem
S>{
S> CString Name;
S> int Val;
S> ......
S>}
S>void CMyListBox::InsertItem(CListItem* pListItem)
S>{
S> int iPos=AddString(pListItem->Name);
S> SetItemDataPtr(iPos, pListItem);
S>}
S>