Click here to Skip to main content
15,921,028 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: chtmlview and disk drive questions Pin
Cathy2-Aug-03 23:23
Cathy2-Aug-03 23:23 
GeneralDVD Files / Burning Pin
Mike_V2-Aug-03 17:04
Mike_V2-Aug-03 17:04 
GeneralRe: DVD Files / Burning Pin
J. Dunlap2-Aug-03 19:22
J. Dunlap2-Aug-03 19:22 
GeneralRe: DVD Files / Burning Pin
Mike_V3-Aug-03 4:54
Mike_V3-Aug-03 4:54 
Questionhow to add tooltip for the CListctrl's Item? Pin
allenhu2-Aug-03 16:40
allenhu2-Aug-03 16:40 
AnswerRe: how to add tooltip for the CListctrl's Item? Pin
HPSI2-Aug-03 19:17
HPSI2-Aug-03 19:17 
Generalkeyboard constants Pin
Marissa1822-Aug-03 16:23
Marissa1822-Aug-03 16:23 
GeneralRe: keyboard constants Pin
PJ Arends2-Aug-03 18:28
professionalPJ Arends2-Aug-03 18:28 
VK_RETURN and VK_DELETE (as defined in WinUser.h)

I would handle them in the TVN_KEYDOWN notification handler
void CMyDialog::OnKeyDownTree(NMHDR* pNMHDR, LRESULT* pResult)
{
    NMTVKEYDOWN* pTVKeyDown = (NMTVKEYDOWN*)pNMHDR;
    if (pTVKeyDown->wVKey == VK_RETURN)
    {
        // Enter Key
    }
    else if (pTVKeyDown->wVKey == VK_DELETE)
    {
        // Delete Key
    }
    *pResult = 0;
}








Sonork 100.11743 Chicken Little

"You're obviously a superstar." - Christian Graus about me - 12 Feb '03

Within you lies the power for good - Use it!
Generalvectors. Pin
WREY2-Aug-03 10:46
WREY2-Aug-03 10:46 
GeneralRe: vectors. Pin
Christian Graus2-Aug-03 11:14
protectorChristian Graus2-Aug-03 11:14 
GeneralRe: vectors. Pin
WREY2-Aug-03 13:00
WREY2-Aug-03 13:00 
GeneralProcess Start time Pin
kurnaziso2-Aug-03 10:12
kurnaziso2-Aug-03 10:12 
GeneralRe: Process Start time Pin
Chris Richardson2-Aug-03 12:03
Chris Richardson2-Aug-03 12:03 
Generalmodem speed Pin
locoone2-Aug-03 9:41
locoone2-Aug-03 9:41 
QuestionClose MDI Child Window Fail ??? Pin
_skidrow_vn_2-Aug-03 8:45
_skidrow_vn_2-Aug-03 8:45 
Questionwhat files to distribute with my MFC app? Pin
mcguile2572-Aug-03 8:16
mcguile2572-Aug-03 8:16 
AnswerRe: what files to distribute with my MFC app? Pin
Michael Dunn2-Aug-03 9:19
sitebuilderMichael Dunn2-Aug-03 9:19 
Generalstill doesn't work Pin
mcguile2572-Aug-03 11:23
mcguile2572-Aug-03 11:23 
GeneralRe: still doesn't work Pin
Christian Graus2-Aug-03 13:03
protectorChristian Graus2-Aug-03 13:03 
GeneralRe: still doesn't work Pin
mcguile2572-Aug-03 14:49
mcguile2572-Aug-03 14:49 
GeneralRe: still doesn't work Pin
Anders Molin3-Aug-03 7:31
professionalAnders Molin3-Aug-03 7:31 
GeneralRe: still doesn't work Pin
Christian Graus3-Aug-03 11:55
protectorChristian Graus3-Aug-03 11:55 
GeneralRe: still doesn't work Pin
Anders Molin3-Aug-03 12:43
professionalAnders Molin3-Aug-03 12:43 
GeneralRe: still doesn't work Pin
Christian Graus3-Aug-03 13:00
protectorChristian Graus3-Aug-03 13:00 
GeneralRe: still doesn't work Pin
Anders Molin3-Aug-03 13:06
professionalAnders Molin3-Aug-03 13:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.