Click here to Skip to main content
15,889,721 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: a problem with function pointer Pin
Alex Cutovoi21-Nov-06 4:51
Alex Cutovoi21-Nov-06 4:51 
AnswerRe: a problem with function pointer Pin
David Crow21-Nov-06 3:19
David Crow21-Nov-06 3:19 
GeneralRe: a problem with function pointer Pin
Alex Cutovoi21-Nov-06 4:50
Alex Cutovoi21-Nov-06 4:50 
Questionwhy "default Beep" windows sound is played Pin
singersinger21-Nov-06 2:11
singersinger21-Nov-06 2:11 
AnswerRe: why "default Beep" windows sound is played Pin
Viorel.21-Nov-06 2:49
Viorel.21-Nov-06 2:49 
GeneralRe: why "default Beep" windows sound is played Pin
singersinger21-Nov-06 2:59
singersinger21-Nov-06 2:59 
GeneralRe: User Feedback Pin
Waldermort21-Nov-06 2:59
Waldermort21-Nov-06 2:59 
QuestionCtreeCtrl Popupmenu Pin
harsha_123421-Nov-06 1:08
harsha_123421-Nov-06 1:08 
i am able to show the popup menu
when user right clicks on tree view item
but now the problem is that when user clicks on some
Menuitem then the control doesn't reaches to the respective
menu handler in fact nothing is getting called

below is the code for showing the pop uo menu

void CTreeViewDlg::OnNMRclickTree1(NMHDR *pNMHDR, LRESULT *pResult)
{
CPoint ptMouse;
DWORD dwPos;
UINT nFlags;
CTreeCtrl *pTreeCtrl;
pTreeCtrl = (CTreeCtrl *)GetDlgItem(IDC_TREE1);
{
dwPos = ::GetMessagePos();
ptMouse.x = LOWORD (dwPos);
ptMouse.y = HIWORD (dwPos);
CPoint ptAction = ptMouse;
// convert coordinates
pTreeCtrl->ScreenToClient(&ptAction);
// determine if click is on tree item
HTREEITEM hItemRClick = pTreeCtrl->HitTest(ptAction, &nFlags);
// if click is on tree item,
if (hItemRClick != NULL)
{
// set selection to right+clicked item
pTreeCtrl->SelectItem(hItemRClick);
HMENU hMenu = LoadMenu(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDR_MENU1));
if(hMenu)
{
hMenu = GetSubMenu(hMenu,1);
if(hMenu)
{
TrackPopupMenu(hMenu,0,ptMouse.x,ptMouse.y,0,pTreeCtrl->m_hWnd,NULL);
}
}
}
}
*pResult = 0;
}


Thanks and regards
harshal

AnswerRe: CtreeCtrl Popupmenu Pin
Mila02521-Nov-06 1:39
Mila02521-Nov-06 1:39 
AnswerRe: CtreeCtrl Popupmenu Pin
Viorel.21-Nov-06 2:08
Viorel.21-Nov-06 2:08 
QuestionProblems with ClearCommError Pin
Demian Panello21-Nov-06 1:07
Demian Panello21-Nov-06 1:07 
QuestionAbout MCI Player Pin
Raja Bose C Leo21-Nov-06 1:06
Raja Bose C Leo21-Nov-06 1:06 
Questionquestion about MSXML ? Pin
Sakthiu21-Nov-06 0:55
Sakthiu21-Nov-06 0:55 
QuestionRe: question about MSXML ? Pin
CPallini21-Nov-06 2:26
mveCPallini21-Nov-06 2:26 
QuestionHow to get Size of safearray Pin
narayanagvs21-Nov-06 0:36
narayanagvs21-Nov-06 0:36 
AnswerRe: How to get Size of safearray Pin
James R. Twine21-Nov-06 0:46
James R. Twine21-Nov-06 0:46 
QuestionSHBrowseForFolder() API pb Pin
super_ttd21-Nov-06 0:32
super_ttd21-Nov-06 0:32 
AnswerRe: SHBrowseForFolder() API pb Pin
James R. Twine21-Nov-06 0:50
James R. Twine21-Nov-06 0:50 
GeneralRe: SHBrowseForFolder() API pb Pin
super_ttd21-Nov-06 1:31
super_ttd21-Nov-06 1:31 
AnswerRe: SHBrowseForFolder() API pb Pin
David Crow21-Nov-06 3:26
David Crow21-Nov-06 3:26 
GeneralRe: SHBrowseForFolder() API pb Pin
super_ttd21-Nov-06 3:30
super_ttd21-Nov-06 3:30 
GeneralRe: SHBrowseForFolder() API pb Pin
David Crow21-Nov-06 3:38
David Crow21-Nov-06 3:38 
GeneralRe: SHBrowseForFolder() API pb Pin
super_ttd21-Nov-06 3:39
super_ttd21-Nov-06 3:39 
QuestionReadDirectoryChangesW doesn't get message about deleting whole directory [modified] Pin
rudo3221-Nov-06 0:19
rudo3221-Nov-06 0:19 
AnswerRe: ReadDirectoryChangesW doesn't get message about deleting whole directory Pin
Ștefan-Mihai MOGA21-Nov-06 0:30
professionalȘtefan-Mihai MOGA21-Nov-06 0:30 

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.