Click here to Skip to main content
15,899,474 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralFriends its Urgent I need your Help!!! Pin
goldminti7-Nov-03 10:43
goldminti7-Nov-03 10:43 
GeneralRe: Friends its Urgent I need your Help!!! Pin
Rickard Andersson207-Nov-03 10:51
Rickard Andersson207-Nov-03 10:51 
GeneralRe: Friends its Urgent I need your Help!!! Pin
Ahmed Galal8-Nov-03 2:56
Ahmed Galal8-Nov-03 2:56 
Questionright place to store debug dll? Pin
stasik garifulin7-Nov-03 10:11
stasik garifulin7-Nov-03 10:11 
AnswerRe: right place to store debug dll? Pin
Tim Smith7-Nov-03 10:21
Tim Smith7-Nov-03 10:21 
AnswerRe: right place to store debug dll? Pin
Mike Dimmick7-Nov-03 23:56
Mike Dimmick7-Nov-03 23:56 
AnswerRe: right place to store debug dll? Pin
Anthony_Yio9-Nov-03 19:51
Anthony_Yio9-Nov-03 19:51 
Generalcode doesnt go into mouseMove Pin
ns7-Nov-03 9:09
ns7-Nov-03 9:09 
Very puzzling:
I am trying to debug this (its tricky to get the mouse right over the editbox ). It doesnt go into the mouseMove. But if I position the cursor over the part of the parent dilaog which is uncovered by controls, it goes into mouseMove but then of course I'm not in the rect. It looks like the richEdit is obscuring the mouseMove somehow....

void CImageDisplay::OnMouseMove(UINT nFlags, CPoint point) 
{
	// TODO: Add your message handler code here and/or call default
		// Get the dimensions of the static control
	CRect rect;
	m_richEdit.GetWindowRect(rect);
	ScreenToClient(rect);

	// If the mouse is over the control, display the titletip. 
	// Note: The title tip will only be displayed if the text
	// in the static control is too large for the static control
	if (rect.PtInRect(point))
	{
		CString str;
		m_richEdit.GetWindowText(str);
		m_titleTip.Show(rect, str, 0, -1);
	}

	CDialog::OnMouseMove(nFlags, point);
}

Many thanks,ns
GeneralRe: code doesnt go into mouseMove Pin
Joaquín M López Muñoz7-Nov-03 10:04
Joaquín M López Muñoz7-Nov-03 10:04 
GeneralRe: code doesnt go into mouseMove Pin
nss7-Nov-03 13:59
nss7-Nov-03 13:59 
GeneralRe: code doesnt go into mouseMove Pin
ns10-Nov-03 4:56
ns10-Nov-03 4:56 
GeneralRe: code doesnt go into mouseMove Pin
Joaquín M López Muñoz10-Nov-03 6:23
Joaquín M López Muñoz10-Nov-03 6:23 
GeneralRe: code doesnt go into mouseMove Pin
ns10-Nov-03 7:28
ns10-Nov-03 7:28 
GeneralDebugging a console application Pin
Franz Klein7-Nov-03 9:01
Franz Klein7-Nov-03 9:01 
GeneralRe: Debugging a console application Pin
Jean Bédard7-Nov-03 9:44
Jean Bédard7-Nov-03 9:44 
Generalaccessing activex method Pin
vancouver7777-Nov-03 8:43
vancouver7777-Nov-03 8:43 
Generalreason for getting this error Pin
pnpfriend7-Nov-03 8:38
pnpfriend7-Nov-03 8:38 
GeneralRe: reason for getting this error Pin
Joaquín M López Muñoz7-Nov-03 9:59
Joaquín M López Muñoz7-Nov-03 9:59 
Generaltestting dll Pin
pnpfriend7-Nov-03 7:43
pnpfriend7-Nov-03 7:43 
GeneralRe: testting dll Pin
Anthony_Yio9-Nov-03 19:59
Anthony_Yio9-Nov-03 19:59 
GeneralGdiplus and Jpeg save Pin
ptharso7-Nov-03 7:10
ptharso7-Nov-03 7:10 
GeneralRe: Gdiplus and Jpeg save Pin
jfugate7-Nov-03 7:24
jfugate7-Nov-03 7:24 
GeneralC++ Strings in VC++.Net 2002 Pin
balihoo927-Nov-03 6:44
balihoo927-Nov-03 6:44 
Generalimage boxes Pin
halblonious7-Nov-03 6:36
halblonious7-Nov-03 6:36 
GeneralRe: image boxes Pin
Maximilien7-Nov-03 6:53
Maximilien7-Nov-03 6:53 

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.