002
14.03.2006, 14:40 Uhr
~Rock
Gast
|
Hallo, danke für den Tip. Ich habe es wie folgt probiert, aber leider funktioniert die Benachrichtigung nicht. Was mache ich falsch ?
C++: |
class CResamplingListCtrl : public CListCtrl { protected: //{{AFX_MSG(CResamplingListCtrl) afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); //}}AFX_MSG };
void CResamplingListCtrl::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { if (nChar == VK_UP || nChar == VK_DOWN) { // TODO }
CListCtrl::OnKeyDown(nChar, nRepCnt, nFlags); }
|
|