Beispiel #1
0
CListBox *CClickList::ShowInPlaceList(int Row, int Col)
{
	CListBox *pListBox = new CInPlaceList(Row, Col, GetItemText(Row, Col));
	ASSERT_VALID(pListBox);

	CRect Rect = GetInPlaceRect(Row, Col);
	Rect.bottom += 75;
	pListBox->Create(WS_BORDER | WS_CHILD | WS_VISIBLE, Rect, 
		this, IDL_INPLACE_LIST);
	pListBox->SetFocus();

	return pListBox;
}