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