Click here to Skip to main content
15,884,388 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to delete Registry Key with Maximum rights Pin
platso_58823-Oct-12 2:40
platso_58823-Oct-12 2:40 
AnswerRe: How to delete Registry Key with Maximum rights Pin
Jochen Arndt23-Oct-12 3:02
professionalJochen Arndt23-Oct-12 3:02 
GeneralRe: How to delete Registry Key with Maximum rights Pin
platso_58824-Oct-12 5:17
platso_58824-Oct-12 5:17 
GeneralRe: How to delete Registry Key with Maximum rights Pin
Jochen Arndt24-Oct-12 5:45
professionalJochen Arndt24-Oct-12 5:45 
GeneralRe: How to delete Registry Key with Maximum rights Pin
platso_58824-Oct-12 20:27
platso_58824-Oct-12 20:27 
GeneralRe: How to delete Registry Key with Maximum rights Pin
Jochen Arndt24-Oct-12 21:15
professionalJochen Arndt24-Oct-12 21:15 
Questionmessage CBN_SELENDOK not sent when using mouse Pin
NoviceEx23-Oct-12 2:07
NoviceEx23-Oct-12 2:07 
AnswerRe: message CBN_SELENDOK not sent when using mouse Pin
Jochen Arndt23-Oct-12 2:51
professionalJochen Arndt23-Oct-12 2:51 
Where and how did you try to process the message?

I ask because the message is send to the parent of the combo box. If you want to handle the message by your combo box class you can use message reflection:

C++
BEGIN_MESSAGE_MAP(CMyComboBox, CComboBox)
    ON_CONTROL_REFLECT_EX(CBN_SELENDOK, OnCbnSelendok)
END_MESSAGE_MAP()

BOOL CMyComboBox::OnCbnSelendok()
{
    // add handling code here
    // return FALSE to pass message to parent
    return FALSE;
}

GeneralRe: message CBN_SELENDOK not sent when using mouse Pin
NoviceEx23-Oct-12 3:05
NoviceEx23-Oct-12 3:05 
GeneralRe: message CBN_SELENDOK not sent when using mouse Pin
Jochen Arndt23-Oct-12 3:23
professionalJochen Arndt23-Oct-12 3:23 
GeneralRe: message CBN_SELENDOK not sent when using mouse Pin
NoviceEx23-Oct-12 21:48
NoviceEx23-Oct-12 21:48 
QuestionLinker error LNK2001 ("external symbol not found") Pin
tiwal22-Oct-12 4:56
tiwal22-Oct-12 4:56 
QuestionRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan22-Oct-12 5:16
mveRichard MacCutchan22-Oct-12 5:16 
AnswerRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal22-Oct-12 20:56
tiwal22-Oct-12 20:56 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan22-Oct-12 22:18
mveRichard MacCutchan22-Oct-12 22:18 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal22-Oct-12 22:58
tiwal22-Oct-12 22:58 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan22-Oct-12 23:48
mveRichard MacCutchan22-Oct-12 23:48 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal23-Oct-12 0:33
tiwal23-Oct-12 0:33 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan23-Oct-12 0:37
mveRichard MacCutchan23-Oct-12 0:37 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal23-Oct-12 1:02
tiwal23-Oct-12 1:02 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan23-Oct-12 5:49
mveRichard MacCutchan23-Oct-12 5:49 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal23-Oct-12 21:57
tiwal23-Oct-12 21:57 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan23-Oct-12 22:40
mveRichard MacCutchan23-Oct-12 22:40 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
tiwal24-Oct-12 2:44
tiwal24-Oct-12 2:44 
GeneralRe: Linker error LNK2001 ("external symbol not found") Pin
Richard MacCutchan24-Oct-12 3:04
mveRichard MacCutchan24-Oct-12 3:04 

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.