Click here to Skip to main content
15,921,716 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralSending a "Click". Help please is urgent. Pin
Rafael Fernández López18-Oct-03 23:54
Rafael Fernández López18-Oct-03 23:54 
GeneralRe: Sending a "Click" Pin
User 665819-Oct-03 1:00
User 665819-Oct-03 1:00 
GeneralRe: Sending a "Click". Help Please, is Urgent Pin
Rafael Fernández López19-Oct-03 1:01
Rafael Fernández López19-Oct-03 1:01 
GeneralRe: Sending a "Click". Help please is urgent. Pin
Michael Dunn19-Oct-03 5:35
sitebuilderMichael Dunn19-Oct-03 5:35 
GeneralRe: Sending a "Click". Help please is urgent. Pin
Rafael Fernández López19-Oct-03 5:51
Rafael Fernández López19-Oct-03 5:51 
GeneralRe: Sending a "Click". Help please is urgent. Pin
Michael Dunn19-Oct-03 8:28
sitebuilderMichael Dunn19-Oct-03 8:28 
GeneralRe: Sending a "Click". Help please is urgent. Pin
Rafael Fernández López19-Oct-03 10:19
Rafael Fernández López19-Oct-03 10:19 
GeneralRe: Sending a "Click". Help please is urgent. Pin
Jonas Larsson20-Oct-03 1:08
Jonas Larsson20-Oct-03 1:08 
From MSDN:

CWnd::SendMessage<br />
LRESULT SendMessage( UINT message, WPARAM wParam = 0, LPARAM lParam = 0 );<br />
...<br />
Sends the specified message to this window. The SendMessage member function calls the window procedure directly and does not return until that window procedure has processed the message.


So in your case it would be

GetParent->SendMessage(WM_LBUTTONDOWN, vkeystatus, MAKELPARAM(x,y) );
GetParent->SendMessage(WM_LBUTTONUP, vkeystatus, MAKELPARAM(x,y) );

HTH

“Our solar system is Jupiter and a bunch of junk” - Charley Lineweaver 2002
GeneralRe: Sending a "Click". Help please is urgent. Pin
Rafael Fernández López20-Oct-03 1:48
Rafael Fernández López20-Oct-03 1:48 
QuestionList Box with DoModal - Can anyone help a newbie? Pin
Anonymous18-Oct-03 23:29
Anonymous18-Oct-03 23:29 
AnswerRe: List Box with DoModal - Can anyone help a newbie? Pin
YaronNir19-Oct-03 2:37
YaronNir19-Oct-03 2:37 
GeneralRe: List Box with DoModal - Can anyone help a newbie? Pin
Anonymous19-Oct-03 8:52
Anonymous19-Oct-03 8:52 
Generalcannot retrieve dialog user inputs Pin
coda_x18-Oct-03 22:26
coda_x18-Oct-03 22:26 
GeneralRe: cannot retrieve dialog user inputs Pin
YaronNir18-Oct-03 22:48
YaronNir18-Oct-03 22:48 
GeneralRe: cannot retrieve dialog user inputs Pin
coda_x18-Oct-03 23:08
coda_x18-Oct-03 23:08 
GeneralRe: cannot retrieve dialog user inputs Pin
YaronNir18-Oct-03 23:13
YaronNir18-Oct-03 23:13 
GeneralRe: cannot retrieve dialog user inputs Pin
coda_x18-Oct-03 23:17
coda_x18-Oct-03 23:17 
GeneralRe: cannot retrieve dialog user inputs Pin
YaronNir18-Oct-03 23:22
YaronNir18-Oct-03 23:22 
GeneralRe: cannot retrieve dialog user inputs Pin
David Crow20-Oct-03 2:58
David Crow20-Oct-03 2:58 
GeneralRe: cannot retrieve dialog user inputs Pin
Rafael Fernández López19-Oct-03 3:37
Rafael Fernández López19-Oct-03 3:37 
GeneralMultiByteToWideChar Pin
YaronNir18-Oct-03 22:12
YaronNir18-Oct-03 22:12 
GeneralRe: MultiByteToWideChar Pin
YaronNir18-Oct-03 23:23
YaronNir18-Oct-03 23:23 
GeneralRe: MultiByteToWideChar Pin
Mike Dimmick19-Oct-03 2:21
Mike Dimmick19-Oct-03 2:21 
GeneralRe: MultiByteToWideChar Pin
YaronNir19-Oct-03 2:37
YaronNir19-Oct-03 2:37 
GeneralFunction Parameters Pin
Fad B18-Oct-03 20:46
Fad B18-Oct-03 20:46 

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.