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

C / C++ / MFC

 
GeneralRe: Cannot hook FindNextFile Pin
ThatsAlok11-Dec-05 19:27
ThatsAlok11-Dec-05 19:27 
GeneralRe: Cannot hook FindNextFile Pin
gamitech15-Dec-05 3:16
gamitech15-Dec-05 3:16 
GeneralRe: Cannot hook FindNextFile Pin
ThatsAlok15-Dec-05 17:11
ThatsAlok15-Dec-05 17:11 
QuestionHalt processing until button is clicked Pin
Simon Cornish8-Dec-05 5:40
Simon Cornish8-Dec-05 5:40 
AnswerRe: Halt processing until button is clicked Pin
toxcct8-Dec-05 5:55
toxcct8-Dec-05 5:55 
GeneralRe: Halt processing until button is clicked Pin
Simon Cornish8-Dec-05 6:40
Simon Cornish8-Dec-05 6:40 
GeneralRe: Halt processing until button is clicked Pin
toxcct8-Dec-05 21:09
toxcct8-Dec-05 21:09 
QuestionON_WM_MOUSEMOVE() in a ActiveX Pin
sweep1238-Dec-05 4:45
sweep1238-Dec-05 4:45 
I have been developing my first ActiveX called MyJoy , which will use the Joystick and mouse as pointers. Snips of code in the MyJoyCtrl file is shown below.

BEGIN_MESSAGE_MAP(CMyJoyCtrl, COleControl)
    ON_OLEVERB(AFX_IDS_VERB_PROPERTIES, OnProperties)
    ON_MESSAGE(MM_JOY1MOVE, OnJoy1Move)
    ON_WM_MOUSEMOVE()
END_MESSAGE_MAP()

Now I get the MM_JOY1MOVE messages but not the ON_WM_MOUSEMOVE, have I ommited something?

I have like for the Joystick included the OnMouseMove handler.

void CMyJoyCtrl::OnMouseMove(UINT nFlags, CPoint point)
{
	x_m_pos = point.x;
	y_m_pos = point.y;
	if(capture == VARIANT_FALSE)	// No Joystick operational
	{
		x_pos = x_m_pos;
		y_pos = y_m_pos;
		z_pos = 0;
	}
}


Any suggestions please.
QuestionVisual C++ compiler error C2143 Pin
Emb_Emb8-Dec-05 4:44
Emb_Emb8-Dec-05 4:44 
AnswerRe: Visual C++ compiler error C2143 Pin
toxcct8-Dec-05 5:03
toxcct8-Dec-05 5:03 
Questionstd::vector - issues Pin
ddmcr8-Dec-05 4:24
ddmcr8-Dec-05 4:24 
AnswerRe: std::vector - issues Pin
toxcct8-Dec-05 4:53
toxcct8-Dec-05 4:53 
GeneralRe: std::vector - issues Pin
ddmcr8-Dec-05 5:01
ddmcr8-Dec-05 5:01 
GeneralRe: std::vector - issues Pin
toxcct8-Dec-05 5:06
toxcct8-Dec-05 5:06 
QuestionFile locking problems?? Pin
chilituna8-Dec-05 3:05
chilituna8-Dec-05 3:05 
AnswerRe: File locking problems?? Pin
David Crow8-Dec-05 3:20
David Crow8-Dec-05 3:20 
QuestionAdd Picturebox into the Form Pin
JanakKoshia8-Dec-05 2:51
JanakKoshia8-Dec-05 2:51 
AnswerRe: Add Picturebox into the Form Pin
BlackDice8-Dec-05 6:09
BlackDice8-Dec-05 6:09 
QuestionNetworking Pin
Girish6018-Dec-05 1:41
Girish6018-Dec-05 1:41 
QuestionHow to get the real parent of a service process Pin
Vaskoder8-Dec-05 0:23
Vaskoder8-Dec-05 0:23 
AnswerRe: How to get the real parent of a service process Pin
Blake Miller8-Dec-05 10:12
Blake Miller8-Dec-05 10:12 
QuestionDisplay views on different screens dimension problem Pin
mikobi8-Dec-05 0:19
mikobi8-Dec-05 0:19 
AnswerRe: Display views on different screens dimension problem Pin
khan++8-Dec-05 0:38
khan++8-Dec-05 0:38 
GeneralRe: Display views on different screens dimension problem Pin
mikobi8-Dec-05 1:00
mikobi8-Dec-05 1:00 
GeneralRe: Display views on different screens dimension problem Pin
Cedric Moonen8-Dec-05 1:24
Cedric Moonen8-Dec-05 1:24 

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.