Click here to Skip to main content
16,017,151 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to Implent Browser/Server Architecture under Linux Pin
Paul Conrad27-Jan-08 10:24
professionalPaul Conrad27-Jan-08 10:24 
GeneralChanging the exe icon Pin
Stan the man27-Jan-08 3:25
Stan the man27-Jan-08 3:25 
GeneralRe: Changing the exe icon Pin
Mark Salsbery27-Jan-08 7:21
Mark Salsbery27-Jan-08 7:21 
GeneralRe: Changing the exe icon Pin
Hamid_RT27-Jan-08 20:42
Hamid_RT27-Jan-08 20:42 
Generalplus arrays Pin
gentleguy27-Jan-08 2:25
gentleguy27-Jan-08 2:25 
GeneralRe: plus arrays Pin
Joan M27-Jan-08 2:43
professionalJoan M27-Jan-08 2:43 
GeneralRe: plus arrays Pin
fd012900227-Jan-08 17:06
fd012900227-Jan-08 17:06 
GeneralFlick problem caused by Invalidate in OnMouseMove Pin
followait27-Jan-08 1:39
followait27-Jan-08 1:39 
It flicks only in one case.
When another window(A) cover the window(B) in my app, then I minimize A and the mouse cursor becomes in the client of B, then the B flicks. Here is the code in OnMouseMove, how to solve the problem? Thanks.

void CMyDlg::OnMouseMove(UINT nFlags, CPoint point) 
{
	Point pt(point.x,point.y);

	m_pcs->DrawCom(m_pMemGraphics);
	m_pcs->DrawCtl(m_pcs->GetSelDev(pt),m_pMemGraphics);

	Invalidate(FALSE);
	CDialog::OnMouseMove(nFlags, point);
}

QuestionRe: Flick problem caused by Invalidate in OnMouseMove Pin
Mark Salsbery27-Jan-08 7:30
Mark Salsbery27-Jan-08 7:30 
GeneralRe: Flick problem caused by Invalidate in OnMouseMove Pin
followait27-Jan-08 16:51
followait27-Jan-08 16:51 
GeneralRe: Flick problem caused by Invalidate in OnMouseMove Pin
Mark Salsbery27-Jan-08 19:15
Mark Salsbery27-Jan-08 19:15 
Generalabout exception specification Pin
George_George26-Jan-08 22:33
George_George26-Jan-08 22:33 
GeneralRe: about exception specification Pin
Maxwell Chen27-Jan-08 18:33
Maxwell Chen27-Jan-08 18:33 
GeneralRe: about exception specification Pin
George_George27-Jan-08 18:41
George_George27-Jan-08 18:41 
GeneralRe: about exception specification Pin
Maxwell Chen27-Jan-08 18:53
Maxwell Chen27-Jan-08 18:53 
GeneralRe: about exception specification Pin
George_George27-Jan-08 19:05
George_George27-Jan-08 19:05 
GeneralRe: about exception specification Pin
Hamid_RT27-Jan-08 20:39
Hamid_RT27-Jan-08 20:39 
GeneralRe: about exception specification Pin
George_George27-Jan-08 20:43
George_George27-Jan-08 20:43 
GeneralRe: about exception specification Pin
Hamid_RT27-Jan-08 20:48
Hamid_RT27-Jan-08 20:48 
GeneralRe: about exception specification Pin
George_George27-Jan-08 20:51
George_George27-Jan-08 20:51 
GeneralRe: about exception specification Pin
Hamid_RT27-Jan-08 21:08
Hamid_RT27-Jan-08 21:08 
GeneralRe: about exception specification Pin
George_George27-Jan-08 21:12
George_George27-Jan-08 21:12 
GeneralRe: about exception specification Pin
Hamid_RT28-Jan-08 2:00
Hamid_RT28-Jan-08 2:00 
GeneralRe: about exception specification Pin
George_George28-Jan-08 13:39
George_George28-Jan-08 13:39 
Generalbad_alloc in new Pin
George_George26-Jan-08 22:12
George_George26-Jan-08 22:12 

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.