Click here to Skip to main content
15,887,302 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Printing problem.. Pin
David Crow22-Dec-07 4:34
David Crow22-Dec-07 4:34 
GeneralRe: Printing problem.. Pin
panthal22-Dec-07 17:04
panthal22-Dec-07 17:04 
QuestionRe: Printing problem.. Pin
David Crow23-Dec-07 2:57
David Crow23-Dec-07 2:57 
Generaliostream file content modification questions Pin
Maxwell Chen21-Dec-07 20:15
Maxwell Chen21-Dec-07 20:15 
QuestionRe: iostream file content modification questions Pin
CPallini22-Dec-07 0:37
mveCPallini22-Dec-07 0:37 
GeneralRe: iostream file content modification questions Pin
Maxwell Chen22-Dec-07 2:58
Maxwell Chen22-Dec-07 2:58 
GeneralRe: iostream file content modification questions Pin
CPallini22-Dec-07 3:24
mveCPallini22-Dec-07 3:24 
Generaltray icon -right click option Pin
guru moorthy.k21-Dec-07 19:01
guru moorthy.k21-Dec-07 19:01 
hi
i have a application for mobie application.

all v know when v right click the icon button there will be some option like exit,about , start ,stop ..

i used the code


void CControlContextDlg::OnContextMenu(CWnd*

/*pWnd*/, CPoint point)
{
// TODO: Add your message handler code here
// Load the desired menu
CMenu mnuPopupSubmit;
mnuPopupSubmit.LoadMenu(IDR_SUBMIT);

// Get a pointer to the button
CButton *pButton;
pButton = reinterpret_cast<CButton

*>(GetDlgItem(IDC_SUBMIT_BTN));

// Find the rectangle around the button
CRect rectSubmitButton;
pButton->GetWindowRect(&rectSubmitButton);

// Get a pointer to the first item of the menu
CMenu *mnuPopupMenu =

mnuPopupSubmit.GetSubMenu(0);
ASSERT(mnuPopupMenu);

// Find out if the user right-clicked the button
// because we are interested only in the button
if( rectSubmitButton.PtInRect(point) ) // Since

the user right-clicked the button, display the context menu


mnuPopupMenu->TrackPopupMenu(TPM_LEFTALIGN |

TPM_RIGHTBUTTON, point.x, point.y, this);
}

...
in this when v right click the button popup menu appears but i want when i right click the tray icon popup menu should appears .
help me

advanced thanks

K.Guru moorthy
k.guru moorthy

GeneralRe: tray icon -right click option Pin
Mark Salsbery22-Dec-07 7:23
Mark Salsbery22-Dec-07 7:23 
Generalcannot create unicode file using wofstream Pin
xanagan66621-Dec-07 18:02
xanagan66621-Dec-07 18:02 
Generalproblem about alloc memory in another library and free in the main project Pin
kcynic21-Dec-07 15:01
kcynic21-Dec-07 15:01 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
Mark Salsbery21-Dec-07 15:10
Mark Salsbery21-Dec-07 15:10 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
kcynic21-Dec-07 15:26
kcynic21-Dec-07 15:26 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
Mark Salsbery21-Dec-07 15:33
Mark Salsbery21-Dec-07 15:33 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
kcynic21-Dec-07 18:16
kcynic21-Dec-07 18:16 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
Stephen Hewitt21-Dec-07 19:30
Stephen Hewitt21-Dec-07 19:30 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
kcynic21-Dec-07 19:41
kcynic21-Dec-07 19:41 
GeneralRe: problem about alloc memory in another library and free in the main project Pin
kcynic21-Dec-07 21:05
kcynic21-Dec-07 21:05 
GeneralNumber Lock activation Pin
Larry Mills Sr21-Dec-07 13:52
Larry Mills Sr21-Dec-07 13:52 
GeneralRe: Number Lock activation Pin
Mark Salsbery21-Dec-07 14:59
Mark Salsbery21-Dec-07 14:59 
GeneralRe: Number Lock activation Pin
Larry Mills Sr22-Dec-07 9:50
Larry Mills Sr22-Dec-07 9:50 
Question.RC file formating differences Pin
KayakCoder21-Dec-07 10:40
KayakCoder21-Dec-07 10:40 
GeneralI hate programming today (project conflict/calling convention conflict, ... ) Pin
Maximilien21-Dec-07 7:24
Maximilien21-Dec-07 7:24 
GeneralGetting the bitmap in and out of a CGIPLUS Image class Pin
Anthony Appleyard21-Dec-07 6:39
Anthony Appleyard21-Dec-07 6:39 
GeneralRe: Getting the bitmap in and out of a CGIPLUS Image class Pin
Mark Salsbery21-Dec-07 7:32
Mark Salsbery21-Dec-07 7:32 

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.