Click here to Skip to main content
16,006,494 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: DLLs for MFC Pin
Hamid_RT10-Mar-06 0:50
Hamid_RT10-Mar-06 0:50 
QuestionImplementing MDI in an ActiveX control Pin
zulat10-Mar-06 0:02
zulat10-Mar-06 0:02 
Questionpopup on controls of dialog Pin
baldha rakesh9-Mar-06 23:47
baldha rakesh9-Mar-06 23:47 
AnswerRe: popup on controls of dialog Pin
Monty29-Mar-06 23:56
Monty29-Mar-06 23:56 
GeneralRe: popup on controls of dialog Pin
Stephen Hewitt10-Mar-06 0:00
Stephen Hewitt10-Mar-06 0:00 
GeneralRe: popup on controls of dialog Pin
Monty210-Mar-06 0:02
Monty210-Mar-06 0:02 
AnswerRe: popup on controls of dialog Pin
Stephen Hewitt10-Mar-06 0:00
Stephen Hewitt10-Mar-06 0:00 
AnswerRe: popup on controls of dialog Pin
Hamid_RT10-Mar-06 0:06
Hamid_RT10-Mar-06 0:06 
if you use event WM_CONTEXT_MENU in the function you can use
handle CWnd->m_hWnd with hWnd your Control


void CAnswerView::OnContextMenu(CWnd* pWnd, CPoint point)
{

if(pWnd->m_hWnd==(your m_hWnd))
{
CMenu menu;
menu.LoadMenu(IDR_MAINFRAME);

CMenu *pContextMenu=menu.GetSubMenu(0);
pContextMenu->TrackPopupMenu(TPM_LEFTALIGN|TPM_LEFTBUTTON|TPM_RIGHTBUTTON,point.x,point.y,AfxGetMainWnd());
}

}

GeneralRe: popup on controls of dialog Pin
baldha rakesh10-Mar-06 1:08
baldha rakesh10-Mar-06 1:08 
GeneralRe: popup on controls of dialog Pin
Hamid_RT10-Mar-06 1:24
Hamid_RT10-Mar-06 1:24 
GeneralRe: popup on controls of dialog Pin
baldha rakesh10-Mar-06 1:37
baldha rakesh10-Mar-06 1:37 
GeneralRe: popup on controls of dialog Pin
Hamid_RT10-Mar-06 2:05
Hamid_RT10-Mar-06 2:05 
QuestionVS compiler Pin
V.9-Mar-06 23:43
professionalV.9-Mar-06 23:43 
AnswerRe: VS compiler Pin
Hamid_RT10-Mar-06 0:24
Hamid_RT10-Mar-06 0:24 
GeneralRe: VS compiler Pin
V.10-Mar-06 1:15
professionalV.10-Mar-06 1:15 
AnswerRe: VS compiler Pin
Dominik Reichl10-Mar-06 0:31
Dominik Reichl10-Mar-06 0:31 
GeneralRe: VS compiler Pin
V.10-Mar-06 1:14
professionalV.10-Mar-06 1:14 
GeneralRe: VS compiler Pin
Hamid_RT10-Mar-06 1:35
Hamid_RT10-Mar-06 1:35 
GeneralRe: VS compiler Pin
V.10-Mar-06 1:43
professionalV.10-Mar-06 1:43 
GeneralRe: VS compiler Pin
toxcct10-Mar-06 1:57
toxcct10-Mar-06 1:57 
GeneralRe: VS compiler Pin
V.10-Mar-06 1:58
professionalV.10-Mar-06 1:58 
GeneralRe: VS compiler Pin
Hamid_RT10-Mar-06 2:05
Hamid_RT10-Mar-06 2:05 
GeneralRe: VS compiler Pin
V.10-Mar-06 2:17
professionalV.10-Mar-06 2:17 
GeneralRe: VS compiler Pin
Hamid_RT10-Mar-06 2:24
Hamid_RT10-Mar-06 2:24 
QuestionRe: VS compiler Pin
David Crow10-Mar-06 2:48
David Crow10-Mar-06 2:48 

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.