try something like following:
HTH
Ivo Stoykov
how to click the mouse button through coding without touching mouse in dot2003 windows application?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
try this for moving
you cannot "how to click the mouse pointer". Click the mouse pointer means that your code is reacting to an event, i.e. mouse click. It is not necessary to do physically the click with the mouse.
You have to
You can use following windows APIs for your purpose.
GetCursorPos - Retrieves the cursor's position, in screen coordinates.
GetAsyncKeyState - determines whether a key is up or down at the time the function is called, and whether the key was pressed after a previous call to GetAsyncKeyState.
SendInput - synthesizes keystrokes, mouse motions, and button clicks.
Hello Tamilselvan:
the author of the code create a class called it WinApi, it is not a built-in class, you can test the whole project by downloading the project source code from this link:
http://www.eggheadcafe.com
Business Accounts
Answer for Membership
by: aymoon80Posted on 2009-10-27 at 01:00:40ID: 25669966
I think it can be done only by using windows APIs
/articles/ transparen tform_send _mouse_cli ck_to_desk top.asp
Check this article that may guide you:
http://www.eggheadcafe.com
Regards