Click here to Skip to main content
15,903,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Ho can I get the path of "My Documents" folder? Pin
Mila02521-Nov-06 3:08
Mila02521-Nov-06 3:08 
AnswerRe: Ho can I get the path of "My Documents" folder? Pin
ThatsAlok21-Nov-06 18:49
ThatsAlok21-Nov-06 18:49 
QuestionHigh speed drawing technology Pin
A_Fa21-Nov-06 2:31
A_Fa21-Nov-06 2:31 
AnswerRe: High speed drawing technology Pin
Mark Salsbery21-Nov-06 6:24
Mark Salsbery21-Nov-06 6:24 
GeneralRe: High speed drawing technology Pin
Steve S21-Nov-06 21:48
Steve S21-Nov-06 21:48 
GeneralRe: High speed drawing technology Pin
Mark Salsbery22-Nov-06 6:09
Mark Salsbery22-Nov-06 6:09 
AnswerRe: High speed drawing technology Pin
Mark Salsbery22-Nov-06 6:21
Mark Salsbery22-Nov-06 6:21 
Questiona problem with function pointer Pin
Alex Cutovoi21-Nov-06 2:26
Alex Cutovoi21-Nov-06 2:26 
AnswerRe: a problem with function pointer Pin
Cedric Moonen21-Nov-06 2:38
Cedric Moonen21-Nov-06 2:38 
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
CPallini21-Nov-06 2:46
mveCPallini21-Nov-06 2:46 
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 

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.