Click here to Skip to main content
15,912,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralMemory Management with variables Pin
IceBerG7118-Jan-04 15:13
IceBerG7118-Jan-04 15:13 
GeneralRe: Memory Management with variables Pin
Stefan Pedersen18-Jan-04 15:26
Stefan Pedersen18-Jan-04 15:26 
GeneralRe: Memory Management with variables Pin
IceBerG7118-Jan-04 15:39
IceBerG7118-Jan-04 15:39 
GeneralRe: Memory Management with variables Pin
Mike Dimmick18-Jan-04 23:27
Mike Dimmick18-Jan-04 23:27 
GeneralRe: Memory Management with variables Pin
Gary R. Wheeler18-Jan-04 15:32
Gary R. Wheeler18-Jan-04 15:32 
GeneralRe: Memory Management with variables Pin
SiddharthAtw18-Jan-04 17:18
SiddharthAtw18-Jan-04 17:18 
GeneralUsing ProgressBar in another class Pin
shultas18-Jan-04 14:13
shultas18-Jan-04 14:13 
GeneralRe: Using ProgressBar in another class Pin
David Crow19-Jan-04 2:43
David Crow19-Jan-04 2:43 
Questionhow do i hendel a function when a key is press'd Pin
Bondtje18-Jan-04 13:25
Bondtje18-Jan-04 13:25 
AnswerRe: how do i hendel a function when a key is press'd Pin
Michael Dunn18-Jan-04 16:28
sitebuilderMichael Dunn18-Jan-04 16:28 
Generalfile x-fer help required Pin
Anonymous18-Jan-04 12:17
Anonymous18-Jan-04 12:17 
QuestionOk, so when is a variable defined? Pin
Senkwe Chanda18-Jan-04 11:58
Senkwe Chanda18-Jan-04 11:58 
AnswerRe: Ok, so when is a variable defined? Pin
Gary R. Wheeler18-Jan-04 12:13
Gary R. Wheeler18-Jan-04 12:13 
GeneralRe: Ok, so when is a variable defined? Pin
Senkwe Chanda18-Jan-04 13:01
Senkwe Chanda18-Jan-04 13:01 
GeneralRe: Ok, so when is a variable defined? Pin
Gary R. Wheeler18-Jan-04 15:16
Gary R. Wheeler18-Jan-04 15:16 
GeneralRe: Ok, so when is a variable defined? Pin
Senkwe Chanda18-Jan-04 17:12
Senkwe Chanda18-Jan-04 17:12 
AnswerRe: Ok, so when is a variable defined? Pin
Mike Dimmick18-Jan-04 23:34
Mike Dimmick18-Jan-04 23:34 
GeneralRe: Ok, so when is a variable defined? Pin
Senkwe Chanda19-Jan-04 4:42
Senkwe Chanda19-Jan-04 4:42 
GeneralA Discrete Mathematic problem. Pin
MaJr18-Jan-04 11:36
MaJr18-Jan-04 11:36 
GeneralRe: A Discrete Mathematic problem. Pin
Alexander M.,19-Jan-04 2:14
Alexander M.,19-Jan-04 2:14 
GeneralPopup menu pops up in wrong place Pin
Daniel132418-Jan-04 11:18
Daniel132418-Jan-04 11:18 
I derived a class from CListBox. In that class I added a handler for the right mouse button. When I click the right button, the menu pops up on my desktop. I know why its doing this, because the CPoint passed to the function is relative to the whole screen, not my listbox.

I cant figure out how to tell the menu to popup where my mouse is.
I tried ScreenToClient() but it didnt work.

<br />
void CMyListBox::OnRButtonUp(UINT nFlags, CPoint point) <br />
{<br />
	CMenu Menu;<br />
	Menu.LoadMenu(IDR_POPUP_MENU);<br />
	CMenu *Popup = Menu.GetSubMenu(0);<br />
	ScreenToClient(&point);<br />
	Popup->TrackPopupMenu(TPM_LEFTBUTTON|TPM_RIGHTBUTTON|TPM_LEFTALIGN, <br />
		point.x, point.y, this, NULL);<br />
	Menu.DestroyMenu();<br />
}<br />


Anybody help?

Thanks!
GeneralRe: Popup menu pops up in wrong place Pin
PJ Arends18-Jan-04 16:31
professionalPJ Arends18-Jan-04 16:31 
GeneralRe: Popup menu pops up in wrong place Pin
Michael Dunn18-Jan-04 16:31
sitebuilderMichael Dunn18-Jan-04 16:31 
GeneralRe: Popup menu pops up in wrong place Pin
Roger Allen18-Jan-04 23:51
Roger Allen18-Jan-04 23:51 
GeneralRe: Popup menu pops up in wrong place Pin
Daniel132419-Jan-04 0:51
Daniel132419-Jan-04 0:51 

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.