> I want to write a control app in Delphi 7, that will send mouse-clicks > to another app, also written in D7. I know it is possible to send > key-presses, but haven't found a way to send clicks. > > Does anybody know a way I can do that, without making changes to the > target application?
Use PostMessage to send WM_LBUTTONDOWN, then WM_LBUTTONUP to the window handle that is to receive a left button mouse click. Glenn Lawler ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

